我正在使用 Fixme 进行边注,但发现我希望有某种内联标记(而不是完整的注释)来显示注释所指的位置。如果我使用该footnote
选项,我会得到我正在寻找的标记,但我认为脚注和边注是多余的。在使用边注时,有没有办法在行\fxnote
内标记边注存在的位置,而无需实际打开脚注选项并让完整注释行内?理想情况下,我会使用类似(!)来显示注释所指的位置。
我真正想要的是一个\hline
指向文本位置的,但这只是我的梦想。
以下是 MWE:
\documentclass[11pt]{article}
\usepackage[draft]{fixme}
\fxsetface{margin}{\linespread{1}\footnotesize}
\begin{document}
Hello \fxnote{haha}world
\end{document}
答案1
怎么样todonotes
?
\documentclass[11pt]{article}
\usepackage[textsize=footnotesize]{todonotes}
\begin{document}
Hello \todo{haha and hehe and hihi}world
\end{document}
几乎所有东西,例如颜色、字体大小等都可以自定义,您还可以获得待办事项列表。有关详细信息,请参阅texdoc todonotes
终端。
要关闭它们,请输入disable
选项:
\usepackage[textsize=footnotesize,disable]{todonotes}
或者输入draft
并\documentclass[11pt,draft]{article}
通过
\usepackage[textsize=footnotesize,obeyDraft]{todonotes}
同样,还有obeyFinal
。手册中的屏幕截图: