假设我的文档中有多个部分。我如何交叉引用某个部分,以便在创建更多部分时更新它?
答案1
只需为引用的部分创建一个标签,然后从其他任何地方引用它。LaTeX
如果添加新的部分,将自动更改引用。例如,
\section{The Referred Section}
\label{sec:mysectionlabel} % or whatever unique label you wish to use
% ...
\section{Another Section}
\label{sec:anotherseclabel} % only if you need to refer to this one also
As we mentioned in \S \ref{sec:mysectionlabel} above, ...