在审阅其他人的 latex 文章时进行更正

在审阅其他人的 latex 文章时进行更正

可能重复:
LaTeX 中的“跟踪修订”

Word 套件中有更正模式。所有更改都将被标记。这样,您可以显示其他人文档中建议的更改。

Tex 中的 analog 是什么意思?

答案1

您可以使用多个软件包:todonoteschangebar其中两个;举个小例子:

\documentclass{article}
\usepackage{todonotes}
\usepackage{changebar}
\usepackage{lipsum}

\begin{document}

\lipsum[2]
\begin{changebar}
\lipsum[2]
\end{changebar}
\lipsum*[2] text text
\todo[prepend]{A very long and tedious
note that cannot be on one line in the list of todos.}.
\lipsum[2]

\end{document}

在此处输入图片描述

对于某些外部工具,你可以看到LaTeX 中的“跟踪修订”

相关内容