现在有没有比 pdfcomment 更好的软件包来向你的 LaTeX pdf 中添加评论/注解?

现在有没有比 pdfcomment 更好的软件包来向你的 LaTeX pdf 中添加评论/注解?

我知道如何注释pdflatex生成的PDF文件?线程pdf评论建议使用包。所以这个问题只是关于你是否认为这仍然是添加写作评论和自我提醒的最佳选择。

我只是想在这里和那里添加注释,以提醒自己在编写接下来的几个部分时返回并完成某些部分。我非常喜欢这种Microsoft Word comments外观,也许有类似的东西?

答案1

我只是想在这里和那里添加注释,以提醒自己在撰写接下来的几个部分时回去完成某些部分。

听起来像你想要的东西去做稍后再为自己添加注释。Packagetodonotes可帮助您完成这项任务。

fitzbanTodonotes

\documentclass{article}
\usepackage{blindtext}
\usepackage{todonotes}
\begin{document}
\section{Introduction}
\blindtext
\todo{Don't forget to put a real introduction here.}
\end{document}

该软件包可以为您创建所有注释的列表。如果disable使用全局选项,则不会打印任何注释。文档中还有更多内容可供发现。请参阅texdoc todonotes

答案2

在此处输入图片描述 来源

\documentclass[a4paper]{article}
\usepackage[colorlinks]{hyperref}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{verbatim}

\definecolor{a0}{rgb}{0.61, 0.77, 0.89}
\definecolor{a1}{rgb}{1.0, 0.75, 0.0}
\definecolor{a2}{rgb}{1.0, 0.74, 0.53}




\begin{document}

%\listoftodos

The coefficient of thermal expansion describes the change in relative dimensions of solids with temperature growing, and it is important characteristic of interatomic bonds features.
\todo[color=blue!40]{Todonote with a different color.}The coefficient of thermal expansion describes the change in relative dimensions of solids with temperature growing, and it is important characteristic of interatomic bonds features.

The coefficient of thermal expansion describes the change in relative dimensions of solids with temperature growing, and it is important characteristic of interatomic bonds features.
\todo[nolist]{Todonote that is only shown in the margin and not in
the list of todos.}%
The coefficient of thermal expansion describes the change in relative dimensions of\todo[size=\small, color=a1]{A note with a small fontsize.} solids with temperature growing, and it is important characteristic of interatomic bonds features.


\todo[inline]{testing testing}

The peculiarities of complex interatomic bonds in polar crystals are manifested precisely during their deformation under the scalar action, such as the uniform change in temperature\todo[noline]{A note with no line back to the text.}The peculiarities of complex interatomic bonds in polar crystals are manifested precisely during their deformation under the scalar action, such as the uniform change in temperature\todo[inline, color=red!50]{Inline todonotes.}The peculiarities of complex interatomic bonds in polar crystals are manifested precisely during their deformation under the scalar action, such as the uniform change in temperature\todo[inline, color=a2]{A note with no line back to the text.}%
The peculiarities of complex interatomic bonds in polar crystals are manifested precisely during their deformation under the scalar action, such as the uniform change in temperature. 

\end{document}

相关内容