我有两章,每章都有两个附录(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}