如何在乳胶中添加更改栏?
在 Latex 中,我创建了一个新命令“changedtext”来标记文档中的特定部分并使其显示为蓝色:
\newcommand{\changedtext}[1]{\textcolor{blue}{#1} }
是否有任何简单的方法可以更改命令以使更改栏出现在生成的 PDF 中的文本旁边? 如果不可能,任何其他关于视觉标记(除了更改栏之外)的建议都可以在黑色和白色上清晰显示。白色打印输出也很有用。
更新:这个问题的读者可能会感兴趣,不久前我开始使用latexdiff 脚本来标记两个版本之间的更改。我将它与 SVN 结合使用,我认为效果很好;如果您拆分 LaTeX 文件,您可能需要查看 这个 tex.stackexchange 问题。
In Latex, I've created a new command 'changedtext' to mark specifics parts in my document and make it appear blue:
\newcommand{\changedtext}[1]{\textcolor{blue}{#1} }
Is there any easy way to alter the command to have change bars appear next to the text in the resulting PDF?
If not possible, any other suggestion for a visual markup (other than change bars) that would be clear on a black & white printout would be useful as well.
Update: It might be of interest to readers of this question that some time ago I started using the latexdiff script to mark up changes between two versions. I use it in combination with SVN, which I think works great; if you split up your LaTeX files, you might want to look at this tex.stackexchange question though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在命令中使用 changebar 宏包之一。
Use one of the changebar macro packages in your command.
另一种在黑白中非常清晰的方式是突出显示(显示为灰色背景)。
使用包
soul
和color
并定义突出显示颜色:现在您可以在文本中使用
\hl{highlighted text}
来突出显示。One other way which would be very clear in B&W would be highlight (shows as gray background).
Use packages
soul
andcolor
and define your highlight color:Now you can use
\hl{highlighted text}
in text to highlight.一些半生不熟的解决方案(不令人满意)我自己想出了,是使用
\marginpar
在边距中进行一些任意指示,例如:将放置文本“r1”(来自修订版) 1) 在边距中。
然而,使用此命令时,
\changedtext
命令不能在任何地方使用(例如在公式、标题中),因为 LateX 会抱怨(在我的情况下)“浮动丢失”。不过,它可能对某些人有用......
Some half-baked solution (not satisfactory) I just came up with myself, is the use of
\marginpar
to have some arbitrary indication in the margin, e.g.:will put the text 'r1' (from revision 1) in the margin.
However, when using this, the
\changedtext
command can not be used everywhere (e.g. in formulas, captions) because LateX will complain (in my case) about 'float(s) lost'.Still,it might be useful to some people...