您能将目录中的第一个条目引用为目录吗?

您能将目录中的第一个条目引用为目录吗?

这个问题类似于他的问题

我制作了一个目录,但并未引用目录作为第一条条目。

\documentclass[12pt,a4paper]{report}
\usepackage[a4paper,margin=6mm, bottom=14mm]{geometry}
\usepackage{amsmath}
.
.
.

\title{COMPUTATIONAL METHODS FOR THE RIEMANN ZETA FUNCTION}
\author{Axion004}
.
.
.
\begin{document}
\maketitle
\pagestyle{empty}
\pagenumbering{gobble} %????
\tableofcontents
\clearpage
\pagestyle{axionstyle}
\pagenumbering{arabic}%
\section*{Summary}
.
.
.
\end{document}

PDF 看起来像

在此处输入图片描述

如何调整上面的屏幕截图,使“目录”作为条目出现在“摘要”上方?也就是说,我想将目录作为目录的一部分。

答案1

软件包tocbibind是实现此目的的最简单方法。如果需要,它有多个选项可以防止LoFLoT或者bib在 ToC 中。

\documentclass[12pt,a4paper]{report}
\usepackage[a4paper,margin=6mm, bottom=14mm]{geometry}
\usepackage{amsmath}
\usepackage{tocbibind}

\title{COMPUTATIONAL METHODS FOR THE RIEMANN ZETA FUNCTION}
\author{Axion004}
\begin{document}
\maketitle
\pagestyle{empty}
\pagenumbering{gobble} %????
\tableofcontents
\clearpage
%\pagestyle{axionstyle}
\pagenumbering{arabic}%
\section*{Summary}
\chapter{Some chapter}
\end{document}

在此处输入图片描述

答案2

使用类(它是报告文章类memoir的超集)很简单book,and

\documentclass[...]{memoir}
...
\begin{document}
\tableofcontents

使用Instead 会得到与类中\tableofcontents*相同的结果\tableofcontentsbook/report

相关内容