添加附录摘要

添加附录摘要

我想在论文附录部分添加一个小摘要。此附录必须位于第一个附录(附录 A)之前。

目标是简要描述附录,因为它们包含我想要添加为附件的文章。

答案1

我对论文摘要的看法是,它们应该像章节一样排版;这是一种可能的设置:

\documentclass{book}

\usepackage{emptypage} % I recommend it

\usepackage{lipsum}

\begin{document}

\frontmatter

\tableofcontents

\chapter{Abstract}

\lipsum[1]

\mainmatter

\chapter{The thesis}

\lipsum

\appendix

\chapter*{Abstract for the appendix}
\addcontentsline{toc}{chapter}{Abstract for the appendix}

The appendix will contain some articles.

\begin{enumerate}
\item The first article (data about it)

\item The second article (data about it)
\end{enumerate}

\chapter{First article}

\lipsum

\chapter{Second article}

\lipsum

\end{document}

相关内容