如何仅显示 \subsubsection 数字

如何仅显示 \subsubsection 数字
\documentclass{article}    
\begin{document}
\section*{Section1}

\subsection*{subsection1}
\subsubsection{Another layer of subsection}

\end{document}

我只想显示子小节的编号,而不显示后面的部分和前面的小节编号。在输出中它显示为 0.0.1,我希望它显示为 1

谢谢

答案1

chngcntr 还将禁用在新的子部分中重置您的数字\subsubsection。只要您只使用带星号的版本,\subsection这没关系。在其他情况下,您可能最好重新定义\thesubsubsection以更改计数器的表示形式:

\documentclass{article}
\usepackage{chngcntr}
%\counterwithout{subsubsection}{subsection}
\renewcommand\thesubsubsection{\arabic{subsubsection}}
\begin{document}
\section{Section1}

\subsection{subsection1}
\subsubsection{Another layer of subsection}

\subsection{subsection1}
\subsubsection{Another layer of subsection}



\end{document}

答案2

您可以使用chngcntr包来删除两个计数器之间的关系。

\usepackage{chngcntr}
\counterwithout{subsubsection}{subsection}

相关内容