Tufte 乳胶课 - 第一章没有编号

Tufte 乳胶课 - 第一章没有编号

我开始有点绝望了。我的第一章没有编号,我不知道为什么。

为了获取章节编号,我使用了\setcounter{secnumdepth}{4}。除了第一章之外,这对每一章都非常有用。对于其他章节,我没有使用任何其他东西。

\chapter{Test1} -> no Number -> "Test1"

 several sections and subsections

\chapter{Test2} -> Results in "1 Test2"

我试过

\chapter{Test}

some text

\chapter{Test1}

 several sections and subsections

\chapter{Test2}

这导致 Test 和 Test1 没有数字,而 Test2 再次出现数字 1。

任何想法都将不胜感激!

标准 Tufte 样本书中也出现了同样的问题(\documentclass{tufte-book}),该样本书可从这里。我从简介章节中删除了星号:

\chapter*{Introduction} -> \chapter{Introduction} 

并添加\setcounter{secnumdepth}{4}。这将得出除第一章之外的所有章节的章节编号。

答案1

我猜你的第一章是前言的一部分,也就是说它被放在\frontmatter和之间\mainmatter。章节\frontmatter没有编号,如下例所示:

\documentclass{tufte-book}
\setcounter{secnumdepth}{4}
\begin{document}
\frontmatter
  \chapter{Test}
\mainmatter
  \chapter{Test2}
\end{document}

因此,只需移动第一章\mainmatter即可解决问题。

相关内容