Questions tagged «pdf-tools»

1
如何在emacs中使用pdf工具(pdf-view-mode)?
pdf-tools包含pdf-view-mode,它提供doc-view-mode中不存在的一些功能(请参阅问题结尾)。 可以将pdf-view-mode用作一般的doc-view-mode的替代品,还是必须通过工具将其作为“工具”? 在这两种情况下,是否都需要编辑emacs源以在gnus,eww和orgmode中使用pdf工具,还是可以使用它们的系统范围设置? ---此处pdf工具的功能为方便起见;见github网站了解详细信息- 似乎比doc-view更快 分辨率通常会更好,因为不会呈现为png 很好的搜索,甚至可以搜索所有出现的短语 可以添加文本注释,以及突出显示,加下划线等 可以为pdf零件创建imenus 可以将多个pdf视为一个“虚拟” pdf 可以与乳胶集成,以并排查看乳胶源和pdf,并在等效位置从一个跳转到另一个(例如,\section{A section}在LaTeX中选择并在pdf中获得该部分)。
23 org-mode  gnus  pdf  pdf-tools 

1
如何让AUCTeX使用pdf-tools打开PDF
某些TeX / LaTeX编辑器支持嵌入PDF查看器,并且支持向前/向后搜索。 我想为此配置AUCTeX和pdf工具。 我在邮件列表中找到了讨论。 https://lists.gnu.org/archive/html/auctex/2015-02/msg00013.html 给出了在Emacs中使用pdf-tools实现此打开的PDF文件的方法。我遵循了,但是没有用。 这是我的配置: (require 'tex-site) (require 'latex) ;;; AUCTeX config (setq TeX-auto-save t TeX-parse-self t) (setq-default TeX-master nil) ;; automatic detection of master file (defun guess-TeX-master (filename) "Guess the master file for FILENAME from currently open .tex files." (let ((candidate nil) (filename (file-name-nondirectory filename))) (save-excursion …
11 auctex  pdf-tools 


2
从Emacs调用的程序中调用emacsclient
我在使用AucTex查看pdf文档文件时遇到问题。我pdf-tools曾经在Emacs中查看PDF文件,并且将其设置emacsclient -n为默认的pdf查看器(通过Debian Linux上的xdg-mime)。在大多数情况下,此方法工作正常,但会破坏(Tex-documentation-texdoc ...)Auctex(C-c ?)的功能。 我已将问题缩小为一行代码。当我尝试查看该listings软件包的文档时,TeX-documentation-texdoc将其转换为以下sexp: (shell-command-to-string "texdoc --view listings") texdoc依次调用emacsclient实际打开文件(基于我通过xdg配置桌面的方式)。但是,此时,Emacs挂起,我需要退出(C-g)以重新获得控制权。之后,将不会打开新的pdf。如果我尝试直接调用emacsclient,则会发生相同的事情: (shell-command-to-string "emacsclient -n tmp.pdf") 这两个命令都在命令行上运行(即emacsclient -n tmp.pdf和)texdoc --view listings。 我的问题是,在这种情况下,如何在Emacs中调用emacsclient?(而且我知道我可以使用find-file;仅打开pdf文件,这不是一个选项,因为我需要调用外部进程(texdoc)来查找文件,然后该进程调用emacsclient)。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.