正如我所问这里,我正在尝试添加一个图像链接,它已经以这种方式工作了:
\documentclass{article}
\usepackage{graphicx}
\usepackage{hyperref}
\let\oldincludegraphics=\includegraphics
\renewcommand{\includegraphics}[2][]{\href{#2}{\oldincludegraphics[#1]{#2}}}
\begin{document}
\noindent\centering\includegraphics[width=\textwidth]{test.pdf}
\end{document}
现在我想打电话
explorer.exe /select,./../path/to/file/file.ext
当单击图像时,我希望资源管理器打开并突出显示该文件。
有没有办法做到这一点?
编辑:
我发现这里一些“提供通过 localhost 激活 php 脚本的链接”的代码:
function pdflatex($data=''){
if (!empty($_POST)){
$code=$_POST['ascript'];
}
//$f='ZZZ.tex';
//$res = file_put_contents('C:/latex-samples/'.$f, trim($code));
//ob_start();
$t='pdflatex.exe c:/latex-samples/ZZZ.tex 2>&1';
echo '<pre>'.shell_exec($t).'<pre>';
}
但坦率地说,我不明白如何将其用于我的目的。
也许有人可以给我提示?
最好的,本