第二级标题:从 0 开始计数

第二级标题:从 0 开始计数

我正在使用 Pandoc。我发现这个答案但它只对第一级标题有效。

我怎样才能偏移二级标题以便它们:

1

1.0

1.1

代替

1

1.1

1.2

\setcounter{subsection}{-1}

似乎不起作用。

编辑以添加代码:

---
title: My title
date: 01/01/1970
author:
 - John Doe
header-includes:
 - \usepackage{fancyhdr}
 - \pagestyle{fancy}
 - \fancyhead[LO,LE]{This is my header}
 - \fancyfoot[LO,LE]{This is my footer}
 - \fancyfoot[CE,CO]{\thepage}
 - \usepackage[owncaptions,tablegrid]{vhistory}
numbersections: true
mainfont: Helvetica
mainfontoptions: BoldFont=Helvetica Bold
mainfontoptions: ItalicFont=Helvetica Oblique
mainfontoptions: BoldItalicFont=Helvetica Bold Oblique
---

\begin{versionhistory}
\vhEntry{1.1}{13.05.04}{JW|AK|KL}{Typos corrected.}
\vhEntry{1.0}{22.01.04}{JPW|KW}{created}
\vhEntry{1.1}{23.01.04}{DP|JPW}{correction}
\vhEntry{1.2}{03.02.04}{DP|JPW}{revised after review}
\end{versionhistory}

<!--- TOC -->
\setcounter{tocdepth}{4}
\tableofcontents

\setcounter{section}{-1}
\setcounter{subsection}{-1}

#Scope
asdfghj fghjkl

##Applicability
asdfgh fghjkl fghjkl fvghjkl hjklnjk

答案1

代替

\setcounter{subsection}{-1}

你可以添加到你的序言中(或其他地方)

\renewcommand{\thesubsection}{\thesection.\number\numexpr\value{subsection}-1}

这只会改变表示计数器的\subsection值比实际值小一。如果需要,这也适用于引用。

相关内容