我正在尝试设置一个超链接,以便当用户点击 PDF 链接时,它会转到直接地到所需页面如下图所示:
\documentclass[12pt]{article}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=cyan,
filecolor=magenta,
urlcolor=blue,
}
\begin{document}
Let's go to \href[page = 4]{https://personal.utdallas.edu/~herve/Abdi-EVD2007-pretty.pdf}{page 4} of this document.
\end{document}
但是,它最终会转到页面的开头。有没有什么方法可以正确设置它?