为什么当我使用 todonotes 时 textwidth-1cm 有效

为什么当我使用 todonotes 时 textwidth-1cm 有效

这是我的问题的一个简单示例。如果我删除 todonotes 包,则会-1cm-1cmtest在输出 pdf 上得到结果。

\documentclass{article}

\usepackage{todonotes}

\begin{document}

\begin{minipage}{\textwidth-1cm}
  test
\end{minipage}

\end{document}

答案1

todonotes加载calc包,这使得可以直接在 a 的参数中进行类似的计算minipage

因此,如果你注释/取消注释,你会看到相同的内容\usepackage{calc}

\documentclass{article}
\usepackage{calc}
\begin{document}
\begin{minipage}{\textwidth-1cm}
  test
\end{minipage}
\end{document}

相关内容