使用罗马数字的内容

使用罗马数字的内容

我正在使用它\tableofcontents来制作章节内容。但是它不包括 frontmatter 中的页面内容,该怎么办?

\documentclass[english,openany]{book}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{geometry}
\usepackage{textcomp}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{subscript}
\doublespacing

\makeatletter
\usepackage{amsmath}


\makeatother

\usepackage{babel}
\begin{document}
\frontmatter
\chapter*{}
\tableofcontents{}
\listoffigures
\listoftables
 \mainmatter
\chapter
\end {document}

答案1

尝试:

\documentclass[english,openany]{book}
    \usepackage[T1]{fontenc}
    \usepackage[latin9]{inputenc}
    \usepackage[margin=25mm]{geometry}
    \usepackage{babel}


\begin{document}
\frontmatter
\chapter{Preface}
\tableofcontents
\listoffigures
\listoftables
 \mainmatter
\chapter{First}
    \end{document}

如您所见,前言中的章节不应采用星号形式,以便包含在目录中。由于它位于前言中,因此不会进行编号。

顺便说一句,你的问题标题误导了你。请修改它,以便它能够反映你的问题。

相关内容