把笔记放在一边

把笔记放在一边

是否有一个包可以将“脚注”放在一边,像这个例子一样:http://www.bvh.univ-tours.fr/Consult/consult.asp?numfiche=571&index=15&numtable=B372615206_18229&mode=1&ecran=0

答案1

是的,该footmisc软件包通过其side选项实现了这一点:

\documentclass{article}

\usepackage[side]{footmisc}

\setlength{\marginparwidth}{3cm}% adjust to your document's needs

\begin{document}

Hello\footnote{This is some text in the margin that should break and everything.}
World\footnote{And some more text that should go to the margin as well and behave like
the other footnote.}.

\end{document}

相关内容