我必须确切地我的文档中的章节/节/小节/等的编号和标题之间有一个空格。
我正在使用回忆录课程(也是一项要求)。
我怎么做?
答案1
memoir
默认情况下第1章在一行上然后标题在第二行;编号和标题之间没有“空格”。如果您使用非默认章节样式,则应说明。
\quad
对于较低级别的标题,数字和标题之间有一个四倍空格 ( )。使用\setsecnumformat
来更改此设置。
\documentclass{memoir}
\setsecnumdepth{subsection}
\begin{document}
\tableofcontents
\chapter{A Chapter}
\section{A section}
\subsection{A subsection}
\setsecnumformat{\csname the#1\endcsname\space}% change the spacing
\section{Another section}
\subsection{Another subsection}
\end{document}
请参阅低级标题请参阅手册(> texdoc memoir
)以了解更多信息。