Latex scrreprt重新定义了sububsection

时间:2015-09-13 14:58:45

标签: latex

如何解决这个问题:我使用scrreprt来构建详细说明。在此我使用subsubsection。我想在论文中对此进行编号,但不要在表格中看到它。目前它不在表中(很好),但在论文中没有编号(如3.1.1.1)。怎么做到这个?

1 个答案:

答案 0 :(得分:1)

要启用子子网的编号,请在序言中添加\setcounter{secnumdepth}{3}

\documentclass{scrreprt}
\setcounter{secnumdepth}{3}

\begin{document}

\tableofcontents

\chapter{Chapter}
\section{Section}
\subsection{Sub Section}
\subsubsection{Sub Sub Section}

\end{document}

enter image description here

您可以使用:\setcounter{tocdepth}{3}

将子子部分添加到TOC