获取标题而不是引用章节/部分的编号?

获取标题而不是引用章节/部分的编号?

在我的文档中我引用了一个部分,例如

\section{My Section}\label{test}
Also see section\ref{test}

这给了我,例如

另请参阅第 1 节

但我想要的是:

另请参阅“我的部分”部分

我怎样才能做到这一点?

[编辑:评论已移至问题正文]

当然,使用“第 1 章我的部分”之类的内容更有意义,因此会提到章节编号和标题。无论如何,这只是一个例子,您可以轻松地将两者结合起来。

答案1

nameref包可以做你想做的事(并且与hyperref)。

\documentclass{article}

\usepackage{nameref}% Only if hyperref isn't loaded
% \usepackage{hyperref}

\begin{document}

\section{foo}\label{test}

Some text.

\section{bar}

Some text. Also see section \nameref{test}.

\end{document}

在此处输入图片描述

相关内容