如何获取章节标题单独部分内容

如何获取章节标题单独部分内容

我想获取章节标题内容,

我知道 \thechapter 是章节编号,\chaptername 代表“章节”,现在我想获取真正的标题文本,所以,有人能给我一些建议吗,谢谢。

我想在某处引用标题内容。

在此处输入图片描述

答案1

使用nameref包(和\label)。

\documentclass{book}% or other regular class
\usepackage{nameref}
\begin{document}
\chapter{Chap title}\label{chap}
\section{Sec title}\label{sec}
This is section titled \nameref{sec} in chapter titled \nameref{chap}.
\end{document}

相关内容