有章节的课程

有章节的课程

我想reportChapter 3.6(和连续) 开始直到3.9。我一直在寻找这些类型的命令,但它们没有按我想要的方式工作。

请帮忙

答案1

\renewcomand\thechapter{3.\arabic{chapter}}
\setcounter{chapter}{5}

序言中应该包含第\chapter3.6 条

答案2

原则上可以chapter and相应地设置部分计数器,但它看起来有点奇怪。

由于section每次增加计数器时都会重置计数器,因此必须进行计数器chapter的设置section \chapter叫做。

\documentclass{report}

\usepackage{blindtext}

\setcounter{chapter}{2}



\begin{document}
\tableofcontents

\chapter{My real first chapter}
\setcounter{section}{5}

\section{A section}

\blindtext[5]

\section{A} % Will be 3.7
\section{B} % 3.8
\section{c} % 3.9

\chapter{Second chapter}  % Sections are set to 1, chapter is 4 now
\section{Start over with 1}

\end{document}

在此处输入图片描述

答案3

有章节的课程

如果该课程包含章节,并且“3.6”中的“3”表示章节编号:

\documentclass{report}

\setcounter{chapter}{3}
\setcounter{section}{5}

\begin{document}
\tableofcontents
\section{First section}
\subsection{First subsection}
\subsubsection{First subsubsection}
\section{Second section}
\section{Third section}
\section{Forth section}
\end{document}

班级报告结果

无章节课程

如果类中不包含诸如 的章节article,那么章节计数器的出现可以加上 前缀3.。较长的章节编号也需要目录中的更多空间,请参见以下示例:

\documentclass{article}

\usepackage{etoolbox}

\pretocmd\thesection{3.}{}{%
  \errmessage{Patching \noexpand\thesection failed}%
}
\setcounter{section}{5}

% Extra place is needed for the section number in the table of contents
\makeatletter
\patchcmd\l@section{1.5em}{2.3em}{}{%
  \errmessage{Patching \noexpand\l@section failed}%
}
\makeatother

\begin{document}
\tableofcontents
\section{First section}
\subsection{First subsection}
\subsubsection{First subsubsection}
\section{Second section}
\section{Third section}
\section{Forth section}
\end{document}

班级文章结果

相关内容