使用 texstudio 自动更新 pdf

使用 texstudio 自动更新 pdf

我在 mac os x 上使用 texstudio。每次我更改 .tex 文件中的某些句子并需要查看结果时,我都必须关闭之前的 .pdf(如果已打开)并重新生成 .pdf。是否可以自动更新 pdf,而无需每次都关闭打开。谢谢。

答案1

我建议你使用内部 PDF 查看器因为它允许 PDF 和源文件之间更精确地同步。此外,它没有关闭问题。检查您是否具有以下设置 内部 PDF 查看器配置

如果你有充分的理由留下来Adobe Acrobat,这里描述了如何设置 DDE 在编译之前自动关闭 PDF: https://sourceforge.net/p/texstudio/feature-requests/650/

答案2

如果其工作方式与 Windows 上相同,则为Options -> Configure TeX Studio -> Build -> PDF Viewer,并且。对于两者,您都可以在, 和... -> \Build -> Default Viewer之间进行选择。Internal PDF Viewer (Embedded)Internal PDF Viewer (Windowed)External PDF Viewer

答案3

有一个用 Python 编写的小脚本,其功能如下:

import time
import os
while (True):
        os.system("xelatex yourOptionsHere youfile.tex")
        time.sleep(5)

但我可以告诉你,这样做会损坏处理器!

相关内容