我是 LaTeX 新手,我正在使用 LyX,但我认为这是一个 LaTeX 问题。
我使用这个 LaTeX 序言来重置零件后的计数器
\usepackage{chngcntr}
\counterwithin*{section}{part}
但它只适用于\part
和 不适用于\part*
... 我需要没有编号的部件。我该怎么办?我在网上找不到任何东西,我的尝试没有奏效(counterwith、part*...)。
答案1
这对 有效,article.cls
\parts
因为没有\chapters
必须重置的。无论是否使用\part
或,之前的都不会造成任何损害,并且会在此自动完成。\part*
\setcounter{section}{0}
\part
\documentclass{article}
%\usepackage{chngcntr}
%\counterwithin*{section}{part}
\usepackage{xpatch}
\xpretocmd{\part}{\setcounter{section}{0}}{}{}
\begin{document}
\part*{A part}
\section{A section in part}
\section{Another section in part}
\part*{Another part}
\section{A section in another part}
\section{Another section in another part}
\end{document}