我怎样才能让 todonotes 使用所有的边距?

我怎样才能让 todonotes 使用所有的边距?

我正在使用 todonotes 包在页边空白处放置注释。但是,它添加的注释占用的页边空白不到 1/3,因此一行只能容纳 4-5 个字符!生成的注释很难阅读。页边注释和正文之间有很多额外的空间;我该如何让 todonotes 使用这些空间?

这是一个最小的工作示例:

\documentclass{minimal}
\usepackage{todonotes}
\begin{document}
blah
\todo{this is just a minimal example.}
\end{document}

答案1

不幸的是,极简主义对于尝试使用来说特别糟糕todonotes。如果你使用例如article(或者你以后想使用的任何内容),它已经好多了。

\documentclass{article}
\usepackage{todonotes}
\usepackage{showframe}
\begin{document}
blah
\todo{this is just a minimal example.}
\end{document}

我使用了该showframe包来使页面布局更加明显。你可以看看这个关于 latex 页面布局的 wiki 页面。一旦获得了期望的行为,就可以再次摆脱showframe

如果边距仍然不够,您可以利用该geometry包在边距中留出足够的空间。例如,您可以添加

\usepackage[paperwidth=210mm,
            paperheight=297mm,
            left=50pt,
            top=50pt,
            textwidth=345pt,
            marginparsep=25pt,
            marginparwidth=124pt,
            textheight=692pt,
            footskip=50pt]
           {geometry}

上面的页面看起来会像这样:

在此处输入图片描述

相关内容