当使用字母而不是数字进行章节编号时,如何调整章节编号(如跳过几个章节编号)?

当使用字母而不是数字进行章节编号时,如何调整章节编号(如跳过几个章节编号)?

我已使用命令将章节编号从数字更改为字母

\renewcommand{\thesection}{\alph{section})}

在序言中。例如,第一个\section{}将在 pdf 中打印如下:

A)

我想跳过文档中的几个部分。例如,假设部分b)C)这样之后的章节编号A)将会d)。因此,上述示例中另一个命令的结果\section{}将在 pdf 中呈现以下输出:

A)

d)

在 LaTeX 中怎样实现这一点?

此致,

格斯

答案1

\documentclass{article}

\renewcommand{\thesection}{\alph{section})}


\begin{document}

\section{First}

\addtocounter{section}{2}

\section{Second, but counted as fourth}

\end{document}

另一种方法使用了更多的“可配置性”:

\documentclass{article}

\renewcommand{\thesection}{\alph{section})}

\newcounter{sectionstoskip}
\setcounter{sectionstoskip}{2}

\begin{document}
    \section{First}
    \addtocounter{section}{\value{sectionstoskip}}
    \section{Second, but counted as fourth}
    \addtocounter{section}{\value{sectionstoskip}}
    \section{Third, but counted even otherwise}
 \end{document}

如果不想再跳过这些部分,则只需\setcounter{sectionstoskip}{0}在开始时使用即可。

在此处输入图片描述

相关内容