Latex各章附錄

Latex各章附錄

在此輸入影像描述我有兩章,每章有兩個附錄(A 和 B)。我如何在論文末尾用乳膠創建它?

答案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}

在此輸入影像描述

相關內容