I want to use paragraph mode inside a rotatebox, so I'm using the minipage-environment. But that doesn't work for me. I get the error "Paragraph has ended before \Grot@box@std was complete".
Is there some other way to do this? Something similar is answered here.
So I get a error when executing the code below. (of course, in this code I could easily replace \par by \\, but I want to use commands like 123 \par\vspace*{\fill} 456 in a minipage with a defined height)
Thank you
Code: Select all
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{graphicx}
\begin{document}
\rotatebox{180}{
\begin{minipage}{3cm}
123 \par 789
\end{minipage}
}
\end{document}