我的 minitoc 中有以下内容:
1 One One
2 Two Two
2.1 Two Point One
2.2 Two Point two
我想知道是否有办法减少章节和小节编号后面的空格,如下所示:
1 One One
2 Two Two
2.1 Two Point One
2.2 Two Point two
MWE 如下:
\documentclass{report}
\usepackage{minitoc}
\dominitoc
\begin{document}
\chapter{Chapter One}
\minitoc
\section{Section One One}
\subsection{Subsection One One One}
\subsection{Subsection One One Two}
\end{document}
答案1
我在我的文件中使用了以下内容并且它按预期工作。
\usepackage{tocloft}
\setlength{\cftsecnumwidth}{2em}
\setlength{\cftsubsecnumwidth}{2em}