包括目录中的项目,但不完全是章节。在回忆录中

包括目录中的项目,但不完全是章节。在回忆录中

我需要在目录中包含这些“感谢”和“介绍”章节,另一方面我不希望它具有正常的章节编号和其他特征,因此我将其包含在内:
\chapter*{Agradecimentos}这完全符合我的需要,但包含在目录中。

我的 MWE:

\documentclass[14pt,twoside,a5paper,extrafontsizes, draft, showtrims]{memoir}
\usepackage[brazilian]{babel} 
\usepackage[utf8]{inputenc}

\begin{document}
        \tableofcontents
        \chapter*{Agradecimentos}
        \chapter*{Introdução}
        \chapter{Preparação}
        \chapter{Conhecimento}
        \chapter{Influências}
\end{document}

有没有办法将这些“感谢”和“介绍”包含在目录中而不将其编号为章节?

答案1

一种简单的方法是使用\frontmatter\mainmatter命令将前言内容与文档正文分开。前言的页面采用罗马数字编号,但章节未编号。正文页面采用阿拉伯数字编号,章节已编号。

\documentclass{memoir}
\begin{document}
\frontmatter
\tableofcontents* % so ToC doesn't contain itself
\chapter{Thanks}
\mainmatter
\chapter{One}
\end{document}

在此处输入图片描述

相关内容