![라텍스 각 장의 부록](https://rvso.com/image/286352/%EB%9D%BC%ED%85%8D%EC%8A%A4%20%EA%B0%81%20%EC%9E%A5%EC%9D%98%20%EB%B6%80%EB%A1%9D.png)
두 개의 장이 있고 각 장마다 두 개의 부록(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}