考虑测试用例:
\documentclass{report}
\usepackage[titles]{tocloft}
\renewcommand{\cftchapfont}{\Large\bfseries}
\renewcommand{\cftchapleader}{\cftdotfill{3}}
\renewcommand{\cftchappagefont}{\Large\bfseries}
\renewcommand{\cftsecfont}{\normalfont}
\renewcommand{\cftsecleader}{\cftdotfill{2}}
\renewcommand{\cftsecpagefont}{\normalfont}
\begin{document}
\tableofcontents
\chapter{Test1}
\section{Test1.1}
\section{Test1.2}
\chapter{Test2}
\end{document}
改变目录大小和样式章节标题和页码Large\bfseries
不影响虚线前导符,虚线前导符保持不变\normalfont
,至于部分。在文档中没有找到相关选项tocloft
。如何修复?
答案1
如果我正确理解了这个问题,即需要更改点的字体大小,那么也许是这样的\renewcommand{\cftchapleader}{\Large\cftdotfill{3}}
:
\documentclass{report}
\usepackage[titles]{tocloft}
\renewcommand{\cftchapfont}{\Large\bfseries}
\renewcommand{\cftchapleader}{\Large\cftdotfill{3}}
\renewcommand{\cftchappagefont}{\Large\bfseries}
\renewcommand{\cftsecfont}{\normalfont}
\renewcommand{\cftsecleader}{\cftdotfill{2}}
\renewcommand{\cftsecpagefont}{\normalfont}
\begin{document}
\tableofcontents
\chapter{Test1}
\section{Test1.1}
\section{Test1.2}
\chapter{Test2}
\end{document}