Bryan W. Lepore skrev:
> is there a short command to rotate/invert a letter? so that without
> having to start a new environment, one could do something like :
>
> \invert{B}
>
> or
>
> \rotate{B}
>
> so the "B" gets inverted or rotated?
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\rotatebox{90}{B}
\reflectbox{B}
\end{document}