\renewcommand{\thefootnote}{\rotatebox[origin=cc]{-90}{footnote}}
but got an error message....so what is the correct way to rotate the footnote marker?
\renewcommand{\thefootnote}{\rotatebox[origin=cc]{-90}{footnote}}
NEW: TikZ book now 40% off at Amazon.com for a short time.
It's like calling a doctor on the phone and telling: "I got a symptom."avoyance wrote:but got an error message
\thefootnote
is usually placed in what is called a moving argument.\rotatebox
from the rotating package, however, is fragile (which means it breaks, if placed in a moving argument). Just protect it.
Code: Select all
\documentclass{article}
\usepackage{rotating}
\let\origfn\thefootnote
\renewcommand{\thefootnote}{\protect\rotatebox[origin=cc]{-90}{\origfn}}
\begin{document}
bla\footnote{blubb}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.