如何在乳胶中添加更改栏?

发布于 2024-09-03 04:14:11 字数 628 浏览 4 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不美如何 2024-09-10 04:14:11

在命令中使用 changebar 宏包之一。

Use one of the changebar macro packages in your command.

你列表最软的妹 2024-09-10 04:14:11

另一种在黑白中非常清晰的方式是突出显示(显示为灰色背景)。

使用包 soulcolor 并定义突出显示颜色:

\usepackage{soul}
\usepackage{color}
\definecolor{lightgray}{rgb}{.92,.92,.92}
\sethlcolor{lightgray}

现在您可以在文本中使用 \hl{highlighted text} 来突出显示。

One other way which would be very clear in B&W would be highlight (shows as gray background).

Use packages soul and color and define your highlight color:

\usepackage{soul}
\usepackage{color}
\definecolor{lightgray}{rgb}{.92,.92,.92}
\sethlcolor{lightgray}

Now you can use \hl{highlighted text} in text to highlight.

情话已封尘 2024-09-10 04:14:11

一些半生不熟的解决方案(不令人满意)我自己想出了,是使用 \marginpar 在边距中进行一些任意指示,例如:

\newcommand{\changedtext}[1]{\textcolor{blue}{#1 \marginpar{r1}} }

将放置文本“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.:

\newcommand{\changedtext}[1]{\textcolor{blue}{#1 \marginpar{r1}} }

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文