段落计数器从 0 开始,不计数

段落计数器从 0 开始,不计数

我想给一些段落标题编号。如果我使用\theparagraph,计数器将从零开始,不会向上计数。我该如何解决这个问题?

梅威瑟:

\documentclass{article}
\begin{document}

\section{Heading}
\subsection{Heading}
\subsubsection{Heading}
\paragraph{\theparagraph \quad Heading} 
\paragraph{\theparagraph \quad Heading}

\end{document}

答案1

关键是计数器secnumdepth(即章节编号深度),在类3中默认为article。要对段落进行编号和计数(除了章节、小节和小小节),只需将默认值secnumdepth增加到4

\documentclass{article}
\setcounter{secnumdepth}{4}
\begin{document}

\section{Section}
\subsection{Subsection}
\subsubsection{Subsubsection}
\paragraph{Paragraph} 
\paragraph{Paragraph}
\end{document}

在此处输入图片描述

相关内容