gpt4 book ai didi

pdf - 如何在 PDF 查看器上自动刷新?

转载 作者:行者123 更新时间:2023-12-04 00:11:59 24 4
gpt4 key购买 nike

我正在 Windows Vista 系统上编辑 LaTeX。我正在使用的 pdflatex不断生成PDF文件。

我的 PDF 查看器是 Adob​​e Acrobat Professional 7,我每次都必须关闭和打开同一个文件才能获得新外观。

有没有办法让 PDF 查看器在更改后刷新 PDF 页面?

最佳答案

查看器不会定期检查磁盘上的更改,所以简短的回答:没有(不幸的是)

但是,您可以使用浏览器在您自己的 html“网页”中查看 pdf 文件,该网页使用 javascript 定期刷新页面。

这是如何(包括用于在手动和自动刷新之间切换的按钮):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<title>my pdf</title>

<script type="text/javascript">
var timer = null;

function refresh(){
var d = document.getElementById("pdf"); // gets pdf-div
d.innerHTML = '<embed src="myPdfFile.pdf" width="700" height="575">';
}

function autoRefresh(){
timer = setTimeout("autoRefresh()", 2000);
refresh();
}

function manualRefresh(){
clearTimeout(timer);
refresh();
}

</script>

</head>
<body>
<button onclick="manualRefresh()">manual refresh</button>
<button onclick="autoRefresh()">auto refresh</button>
<div id="pdf"></div>
</body>
<script type="text/javascript">refresh();</script>
</html>

只需将此代码保存为例如'pdfrefresher.html' 与您的 pdf 位于同一文件夹中。如 src您只使用文件名的嵌入对象,例如'myPdfFile.pdf'(不是磁盘或目录)。
在代码中,可以调整嵌入对象的宽度和高度以及超时时间(以毫秒为单位)。

关于pdf - 如何在 PDF 查看器上自动刷新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7401292/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com