目录和文档中未编号的子节

目录和文档中未编号的子节

我有一份想要修改的目录。我想要文档和目录中没有编号的子部分。

我在用着memoir

\documentclass[12pt, a4paper, makeidx]{memoir}

我有以下 ToC 样式的表格

\settocdepth{subsection}
\setsecnumdepth{subsection}
\maxsecnumdepth{subsection}
\settocdepth{subsection}
\maxtocdepth{subsection}

这导致(ToC)

1 Chapter Titel......................
    1.1  Section......................  
        1.1.1  Subsection......................

我要这个

1 Chapter Titel......................
    1.1  Section ...................... 
         Subsection ......................

任何帮助都很好

答案1

\documentclass{memoir}

\settocdepth{subsection}
% \setsecnumdepth{section}% default

\begin{document}

\tableofcontents

\chapter{foo}

\section{foobar}

\subsection{foobargnu}

\end{document}​

在此处输入图片描述

相关内容