공간을 추가하는 방법을 알아요~ 후에장 번호
\renewcommand\cftchapafterpnum{\vskip3mm}
그것을하는 방법~ 전에? 나는 같은 것이 \cftchapbeforepnum
가능하다고 생각했지만 그렇지 않습니다.
답변1
27페이지에tocloft
패키지"장 항목의 조판을 제어하는 사용자 명령이 있습니다"라고 말합니다. 그 중 하나는 입니다 \cftbeforechapskip
.
\documentclass[12pt]{report}
\usepackage{tocloft}
\setlength{\cftbeforechapskip}{15mm}
\renewcommand\cftchapafterpnum{\vskip3mm}
\begin{document}
\tableofcontents
\chapter{Introduction}
\chapter{Main chapter one}
\section{Background}
\section{Methods}
\section{Results}
\section{Conclusion}
\chapter{Main chapter two}
\section{Background}
\section{Methods}
\section{Results}
\section{Conclusion}
\chapter{Main chapter three}
\section{Background}
\section{Methods}
\section{Results}
\section{Conclusion}
\chapter{Conclusion}
\end{document}