定义新部分

定义新部分

我在文章文档类中有此文档。所有内容都分为章节和小节。现在我想在我的第二章中有一个示例,该示例也分为几个章节。所以我有我的普通文档,在第二节中有一个代码示例,其中章节编号再次从 1 开始... 不确定我是否能说清楚,但这里有一些伪代码;

\section{1}
\section{2}
     \section{Here starts the example counter with 1}
     \section{New section in the example}
\section{3}

答案1

我不确定我是否理解了你的问题。这是你需要的吗?

\documentclass{article}
\begin{document}

\section{Section 1}
\section{Section 2}

\newcounter{sectionOld}
\setcounter{sectionOld}{\thesection}
\setcounter{section}{0}

\section{Here starts the example counter with 1}
    \subsection{Subsection 1}
\section{New section in the example}
    \subsection{Subsection 2}

\setcounter{section}{\thesectionOld}

\section{Section 3}

\end{document}

相关内容