在審查其他人乳膠文章時進行更正

在審查其他人乳膠文章時進行更正

可能的重複:
LaTeX 中的“追蹤更改”

Word包中有批改模式。您的所有變更都會被標記。透過這種方式,人們可以在其他人的文件中顯示建議的變更。

Tex 中的模擬是什麼?

答案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 中的“追蹤更改”

相關內容