页边空白处有双重(重叠)TODO 注释

页边空白处有双重(重叠)TODO 注释

author=当我使用和选项时,我的 TODO 注释会出现两次size=\tiny。我第一次在 LyX 中看到这种情况,fancyline它似乎画了两条重叠的线。但事实证明,我在 TeXstudio(MikTeX,Windows 10)中也看到了一些不寻常的东西。

TeXstudio 中的 PDF 查看器的屏幕截图:

在此处输入图片描述

以下是相同的内容,但放大了部分,显示了一条注释(没有作者),该注释位于一条带有作者和评论的注释下方:

在此处输入图片描述

这是我的 MWE:

\documentclass[]{article}
\usepackage{todonotes}
\begin{document}
This is \todo[size=\tiny,author=Me]{Here's a long comment that wraps around in the margin}a
test
\end{document}

这是包中的一个错误吗todonotes

答案1

对我来说这似乎是一个由于使用而导致的错误\tiny

请参阅以下 MWE(blindtext仅用于提供虚拟文本):

\documentclass[]{article}
\usepackage{todonotes}
\usepackage{blindtext}

\begin{document}
\blindtext
This is\todo[size=\tiny,author=Me]{Here's a long comment that wraps 
  around in the margin}\ 
 a test. 
\blindtext
This is \todo[author=Me]{Here's a long comment that wraps 
  around in the margin} 
 a test. 
\blindtext
\end{document}

正如您所看到的,使用通常的字体大小,输出中没有错误:

在此处输入图片描述

相关内容