
2 つの章があり、各章に 2 つの付録 (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}