我创建了 bash 文件,它不断编译我的乳胶文件,问题是虽然 texmaker 中的 PDFviewer 没有更新,但原始 PDF 文件已更新。PDFviewer 为何会一直显示旧 PDF,直到我使用 Texmaker 编译 texmaker?...我希望 texmaker 中的嵌入式 PDFviewer 更新,即使我不使用 texmaker 编译 .tex 也会显示 PDF文件。
bash 文件。
#!/bin/bash
while true
do
pdflatex -synctex=1 -interaction=nonstopmode /Users/Johnathan/Documents/Bachelor/Rp/bachelor.tex
sleep 4
done