引用 Subsubsection 未按预期工作

引用 Subsubsection 未按预期工作

我在引用子小节时遇到问题。

问题:

问题在于 SubSubSection (2) 的编号为 1.1.1。LaTeX 似乎将每个子部分视为独立的。

下面的乳胶代码生成以下内容(在 ShareLaTex 在线测试)。

结果:

SubSubSection (1) 1.1.1 和 SubSubSection (2) 1.1.1

代码:

\documentclass[12pt]{report}
\usepackage{graphicx}

\title{Example}
\author{}
\date{}

\begin{document}

\maketitle
\chapter{Chapter}
\section{Section}
\subsection{SubSection} 
SubSubSection (1) \ref{sub1}, and SubSubSection (2) \ref{sub2}. 
\subsubsection{Sub sub 1} 
\label{sub1}

\subsubsection{Sub sub 2} 
\label{sub2}

%\mynotes {fast review needed}
\end{document}

答案1

您需要secnumdepth至少将计数器设置为3才能生成正确的切片号:

\documentclass[12pt]{report} 
\setcounter{secnumdepth}{3}
\begin{document}
\chapter{Chapter}
\section{Section}
\subsection{SubSection}

SubSubSection (1) \ref{sub1}, and SubSubSection (2) \ref{sub2}. 
\subsubsection{Sub sub 1} \label{sub1}
\subsubsection{Sub sub 2} \label{sub2}
\end{document}

有关其工作原理的更多解释,请参阅以下问题:

相关内容