![목차 사용자 정의](https://rvso.com/image/353049/%EB%AA%A9%EC%B0%A8%20%EC%82%AC%EC%9A%A9%EC%9E%90%20%EC%A0%95%EC%9D%98.png)
답변1
내가 이미지에서 가져온 것은 중앙에 있는 제목, 왼쪽에 장 번호(있는 경우), 오른쪽에 제목, 페이지 번호입니다.
\documentclass{report}
\usepackage[indentunnumbered]{unnumberedtotoc}%https://en.wikibooks.org/wiki/LaTeX/Document_Structure#Section_numbering
\usepackage{etoolbox}
\tracingpatches
\makeatletter
\patchcmd{\@makechapterhead}{\raggedright}{\centering}{}{}
\patchcmd{\@makeschapterhead}{\raggedright}{\centering}{}{}
\makeatother
\begin{document}
\tableofcontents
\chapter{Wombat}
\addchap{Capybara}
\chapter{An insanely long chapter title that nobody will ever
read entirely Duck}
\end{document}