最小工作示例:
\documentclass{report}
\usepackage{titlesec}
\usepackage{titletoc}
\titleclass{\part}{top}
\titleformat{\part}[display]
{\centering\normalfont}
{\itshape \partname~\thepart}{1.0em}
{\bfseries\MakeUppercase}
\titlespacing*{\part}{0pt}{0pt}{20pt}
\renewcommand{\thechapter}{\Roman{chapter}}
\dottedcontents{section}[5.0em]{}{3.5em}{0.75pc}
\begin{document}
\startcontents[parts]
\part{Part I}
\printcontents[parts]{}{0}{}
\chapter{Chapter I}
\section{Section I.1}
\chapter{Chapter II}
\section{Section II.1}
\chapter{Chapter III}
\section{Section III.1}
\stopcontents[parts]
\end{document}
问题:在目录中的粗体罗马数字和单词(章节)之间添加空格。
答案1
要使目录中的章节条目以粗体显示并可调整空间,请使用\dottedcontents{chapter}[1.0em]{\bfseries}{3.0em}{0pc}
。