
두 개의 장이 있고 각 장마다 두 개의 부록(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}