我正在尝试找到一种方法来在使用时从节标题中删除章节号memoir
。现在我正在使用部分,但没有章节和零出现在所有章节号前面。我尝试像这样重置章节命令:
\renewcommand\thesection{\arabic{section}}
或者类似这样
\renewcommand\thesubsection{\arabic{section}.\arabic{subsection}}
但它并没有像我预期的那样工作。他们不仅删除了章节编号,还删除了小节编号。我相信有更聪明的方法来做到这一点。
答案1
使用\counterwithout
命令:
\counterwithout{section}{chapter}
请参阅手册第 18.8 条memoir
。
答案2
也许您可以使用选项article
和\chapter
作为分段标题。MWE:
\documentclass[article,a4paper]{memoir}
\begin{document}
\part{Test}
\chapter{Old Test}
\part{Next Test}
\chapter{New test}
\end{document}