我想在旋转的材料中添加脚注,但是我尝试的每个解决方案(使用\rotatebox
来自graphicx
包、rotate
来自环境isorot
或rotating
包等)都失败了:脚注标记符合预期,但脚注文本(我希望它不要旋转,并且像往常一样位于页面底部)没有显示。
以下 MWE 显示了此问题。
\documentclass{article}
\usepackage{rotating}
\begin{document}
\begin{rotate}{90}
Foo\footnote{Bar.}.
\end{rotate}
\end{document}
我猜这与旋转材料的底层框有关。但是,无论如何,旋转材料中可以添加脚注吗?
答案1
旋转其实并不重要,问题是它是一个盒子,你会看到同样的\mbox{...\footnote{}}
问题
\rotatebox{}{...\footnotemark}\footnotetext{the text of the footnote}
(您也可以使用rotate
环境,但这只是\rotatebox
为了与 LaTeX2.09rotating
包兼容的一个包装器。)
如果要旋转整个页面,则可以使用允许直接使用脚注的lscape
包环境。landscape