latex 中各章的附录

latex 中各章的附录

在此处输入图片描述我有两章,每章都有两个附录(A 和 B)。如何在论文末尾用 latex 创建它?

答案1

这也许可以作为使用包的起点appendix

\documentclass{book}
\usepackage[title,titletoc,toc]{appendix}

\begin{document}

\tableofcontents
\frontmatter
\chapter{Preface}

\mainmatter
\chapter{First chapter}
\chapter{Second chapter}

\begin{appendices}
\chapter{xxxxxxx}
\chapter{yyyyyyy}
\end{appendices}

\end{document}

在此处输入图片描述

相关内容