可能重复:
获取引用章节的标题而不是编号?
是否可以使用\ref{chap:conclusion}
来引用章节的实际名称而不是 LaTeX 中的章节计数器?这样我就可以这样做:
See the \ref{chap:conclusion} chapter for more information
See the Conclusion chapter for more information
代替:
See Chapter \ref{chap:conclusion} for more
See Chapter 6 for more
答案1
您可以使用该nameref
包:
\documentclass{article}
\usepackage{nameref}
\begin{document}
\section{Me, myself and I}
\label{intro}
Hi, my name is Bart.
\section{Summary}
I introduced myself in section: \nameref{intro}.
\end{document}
生成: