如何在章节标题中引用(或避免)编号实体

如何在章节标题中引用(或避免)编号实体

我需要从章节标题中引用其他地方描述的模型,例如

\section{Analysis of model X} 

引用模型的一种方法是创建一个新的计数器,然后写入

\section{Analysis of \cref{grandmodelofeverything}}

但是现在hyperref会因为无效的令牌而抱怨,而且在目录中看起来也不太好,特别是因为描述模型的部分的标题比

\section{Model 1}

他们现在就像

\section{Adding the effect from Y processes}

我是否需要发明半描述性的长名称,例如“作者经过此修改的模型”或者我可以忍受这些怪癖?

答案1

也许这就是 OP 想要实现的?A \nameref*{},即没有链接?

\documentclass{article}

\usepackage[bookmarksopen]{hyperref}

%\usepackage{cleveref} %Well, not needed here ;-)

\begin{document}
\tableofcontents

\section{Analysis of \nameref*{something}}

\section{Model X}\label{something}


\end{document}

在此处输入图片描述

相关内容