目录 章节编号

目录 章节编号
\documentclass[a4paper,12pt,openany,leqno,footinclude=true]{memoir}

在我的目录中

我遇到了同样的问题目录中章节编号后的点

我在目录中的章节编号如下:

在此处输入图片描述

我想在目录中的章节编号后面添加一个点。

我采用了上面问题的第二种解决方案:

\usepackage{tocloft}%
\renewcommand{\cftchapaftersnum}{.}%

但它不起作用,

我得到了错误

LaTeX Error: \cftchapaftersnum undefined

答案1

这将解决问题:

\def\cftchapteraftersnum{.}

编辑:尝试使用这个 MWE:

\documentclass[a4paper,12pt,openany,leqno,footinclude=true]{memoir} 
\usepackage{tocloft} 
\def\cftchapteraftersnum{.} 
\begin{document} 
\tableofcontents 
\chapter{blabla} 
\section{blab blab} 
\chapter{bleble} 
\section{bleb bleb} 
\end{document}

顺便说一句:\cftchapteraftersnum用于memoir.cls定义\l@chapapp

相关内容