重置 \part* 中的计数器 \section

重置 \part* 中的计数器 \section

我是 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}

在此处输入图片描述

相关内容