使用数学符号注释Adobe Reader PDF文档

9
许多数学教材和其他文献都是以PDF格式出现的,因此我经常使用Adobe Reader注释工具对它们进行注释。
我在这里找到了一个有用的指南,但有时我也想插入数学符号。有人找到了一种可靠的方法来将数学符号、TeX或其他任意格式插入注释中吗?
到目前为止,我找到的最好方法是输入以"0x"为前缀的unicode码,然后按alt+X。也许通过Adobe javascript SDK,您可以编写一个脚本来简化此过程。

你能在评论工具中插入图片吗?你可以使用在线工具,比如http://www.codecogs.com/latex/eqneditor.php来从LaTeX生成图像(或PDF)并插入它。我不使用Reader,所以我不记得它支持什么。这有点间接,但这将给你漂亮的结果。 - Jeremy West
2个回答

2

我认为目前的商业编辑器都没有使这一过程变得容易,这太糟糕了。我相信供应商会监视这个网站,所以还有希望。

同时,这里提供一个手动解决方案。

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

    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.

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

    Also see this question.


1
免费(自由)的PDF工具Okular可以通过将LaTeX公式直接放置在$$...$$之间来支持此功能。

enter image description here


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接