我必须为课程作业写一篇论文。我们应该使用给定的布局,其中有单列文本和两边的边距注释 - 一侧是参考文献,另一侧是章节注释。我已经玩了一段时间,但还没有找到任何可行的解决方案。尝试复制\marginpar
let 的定义会导致大量编译错误,但这并不是我想要的 ;)
此外,如果标题和图表横跨整个页面宽度,那就太棒了,但我不知道我是否需要它。万一有一个类或包可以同时完成这两项工作……
有什么建议么?
答案1
该memoir
包支持 marginpars 和 sidenotes,它们可以位于相反的边距。
以下是一个例子:
\documentclass[a4paper,final,oneside]{memoir}
\isopage[6] % Quick and dirty large margins
\checkandfixthelayout
\begin{document}
The medievalpage command generates the position and
\sidepar{A sidepar note}
\marginpar{A marginpar note}
size of the typeblock according
to the principles of medieval scribes and the early
printers, as discovered and described
by Jan Tschichold. The basic principle is that the
spine, top, fore-edge and bottom
margins around the typeblock are in the ratio 2:3:4:6.
Typically the spine margin was 1/9
the width of the page, which is what medievalpage
assumes by default. This can be
changed with the optional [spine] argument.
\end{document}
请注意,\sidepar
音符不会浮动,因此可能会重叠。
抱歉,因为我有点陷入困境,这只是一个粗略的答案,我相信可以改进。例如,我还没有详细说明如何将边距调整到您想要的程度(memoir
内置了此功能,因此您不需要geometry
)。