答案1
我建议memoir
对于这个类,这里有一个基本的例子:
\documentclass{memoir}
\usepackage{blindtext}
\usepackage{graphicx}
\footnotesinmargin
\begin{document}
\blindtext
Some text\footnote{a footnote in the margin.}.
\blindtext
\begin{marginfigure}
\includegraphics[width=4cm]{example-image}
\end{marginfigure}
\blindtext
\blindtext
\blindtext
\blindtext
\footnote{notice that we are now on the other side of the page}
\blindtext
\blindtext
\end{document}
这个memoir
类可以做很多事情,但这些应该可以让你入门。关键点是\footnotesinmargin
,顾名思义,将所有脚注放在页边距中,以及marginfigure
(和类似的margintable
)将图表(或表格)放在页边距中。