指向外部文档的超链接中的问题

指向外部文档的超链接中的问题

我有两个 latex 文件:一个用于实际论文,一个用于附录。在论文中,我想引用附录的部分。我按照我找到的方法来引用外部文档,但我无法让它工作。

这是我的论文模板(pdf 名称Paper.pdf:):

\documentclass[11pt]{article}
      
\usepackage{xr-hyper}  
\usepackage[colorlinks=true,pdfstartview=FitH,citecolor=blue,urlcolor=blue,linkcolor=blue]{hyperref} %option dvipdfm for dvi

\externaldocument{OnlineAppendix}[OnlineAppendix.pdf] % reference to the online appendix

\begin{document}

\section{Introduction}\label{sec:intro}

I want to refer to \autoref{sec: app} but it doesn't work.

\end{document}

这就是在线附录(pdf 名称OnlineAppendix.pdf:):


\documentclass[11pt]{article}  
     
\usepackage{xr-hyper} 
\usepackage{hyperref} 
\externaldocument{Paper}[Paper.pdf] % actual paper

\begin{document}

\section{Title}\label{sec: app}
This is the Online Appendix

\end{document}

我究竟做错了什么?

谢谢!

相关内容