我在overleaf上有兩個檔案(A, B)要cross referencing
目前的方式是兩個檔案都掛這個
\usepackage{xr}
\makeatletter
\newcommand*{\addFileDependency}[1]{\typeout{(#1)}
\@addtofilelist{#1}%
\IfFileExists{#1}{}{\typeout{No file #1.}}
\makeatother
\newcommand*{\myexternaldocument}[1]{%
\externaldocument{#1}%
\addFileDependency{#1.tex}%
\addFileDependency{#1.aux}%}
在A檔案中放
\myexternaldocument{B}
在B檔案中放
\myexternaldocument{A}
最後生latexmkrc檔。基本上參照這篇的作法:
https://www.overleaf.com/learn/how-to/Cross_referencing_with_the_xr_package_in_Overleaf
奇怪的是,equation等都可以\ref,但section number卻無法,
有強者大大知道怎麼修改嗎 @@ 謝