在乳胶中交替文本位置

在乳胶中交替文本位置

我正在撰写我的博士论文,我想为我的文档提供以下格式(见图)。

我感谢任何提供的指导。在此处输入图片描述

我在标准“文本定位设置”中没有找到任何帮助

答案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)将图表(或表格)放在页边距中。

相关内容