用数学符号注释Adobe Reader PDF
我阅读的许多数学教科书和其他文献均为PDF格式,因此我经常发现自己使用Adobe Reader注释工具对其进行注释.
Many of the math textbooks and other literature I read is in PDF format, so I frequently find myself annotating these with the Adobe Reader comments tool.
我确实在这里找到了有用的指南,但有时我想选择插入数学符号.有没有人找到将数学符号,TeX或其他任意格式插入注释的可靠方法?
I did find a helpful guide here, but sometimes I'd like the option of inserting math symbols, too. Has anyone found a reliable way to insert math symbols, TeX, or other arbitrary formatting into the annotations?
到目前为止,我想出的最好的办法是输入以"0x"为前缀的unicode,然后在其后按alt + X.也许使用Adobe javascript SDK,您可以编写脚本来简化此操作.
So far, the best I've come up with is to enter the unicode prefixed by "0x" and hit alt+X after it. Maybe with the Adobe javascript SDK you could write a script to shortcut this.
我认为目前没有任何商业编辑器可以使此操作变得容易,这太糟糕了.我确信供应商会监视此站点,所以有希望.
I don't think any of the current commercial editors make this easy, which is too bad. I am sure the vendors monitor this site, so there is hope.
同时,这是一个手动解决方法.
In the meantime, here is a manual workaround.
- 使用tikz创建您的评论框.这是我发现最相关的两个示例:定位.试玩各种选项,以获取所需的形状和位置.从包含您评论的乳胶源生成一个pdf文件.
-
重要提示:如果您的注释在原始文档的最后一页之前结束,请插入:
- Use tikz to create your comment boxes. Here are the two examples I found to be most relevant: Boxes and Positioning. Play around with the options to get both the shape and the placement you want. Generate a pdf file from the latex source that contains your comments.
IMPORTANT: if your comments end before the last page of the original document, insert:
\pagebreak{} % create empty page
\thispagestyle{empty} % get rid of page numbers et al
~ % put a space so the page gets generated
在您的\end{document}
之前,以获取空白的最后一页.以下命令将在原始文档的所有后续页面上重复使用注释文档的最后一页.
before your \end{document}
, to get an empty last page. The following command will reuse the last page of your comments document on all subsequent pages of the original document.
使用 pdftk的最新版本multistamp命令,将您的方程式文件与原始文件重叠,如下所示:
Use a recent version of pdftk with the multistamp command to overlay your equations file with your original file like so:
pdftk original.pdf multistamp comments.pdf output out.pdf
另请参见此问题.