我有一个包含此代码的目录模板
\newcommand{\tocheader}{{%
\underline{\textbf{\larger{Title}}} \hfill \underline{\textbf{\larger{Page}}}\large
\par\bigskip% After heading
}}
\newcommand{\AtBeginShipoutClear}{\gdef\AtBegShi@Hook{}}
\renewcommand\tableofcontents{%
\cleardoublepage\phantomsection\addchaptertocentry{\normalfont\contentsname}
\section*{\Large\centering\contentsname \\[2cm]
\underline{\textbf{\larger{Title}}} \hfill \underline{\textbf{\larger{Page}}}\large
\@mkboth{%
\MakeUppercase\contentsname}{\MakeUppercase\contentsname}}
\AtBeginShipoutNext{%
\tocheader
}
}
\onehalfspacing\@starttoc{toc}%
}
我让标题和页码出现在每一页上\tocheader
-
问题是,页码字体大小不是固定的:我们希望它全部都是 12pt 或\normalsize
。
我努力了\usepackage{tocloft}
。
章节单元目录内容的字体更改
\renewcommand{\cftchappagefont}{\normalfont}
但它也不起作用并且删除了一些章节。
我还尝试了章节、节和小节的字体大小,它也使页码与章节或节的页码相同。
\renewcommand{\cftpartfont}{\normalfont\sffamily\bfseries}% \part font in ToC
\renewcommand{\cftchapfont}{\normalfont\large\itshape} % \chapter font in ToC
\renewcommand{\cftsecfont}{\normalfont\slshape} % \section font in ToC
\renewcommand{\cftsubsecfont}{\normalfont\itshape} % \subsection font in ToC
我希望章节的字体为 16pt、章节的字体为 14pt、小节的字体为 12pt、间距为 1.5 厘米,页码字体大小为 12pt。
答案1
我尝试根据你问题中的代码拼凑一个 MWE。除了 ToC 标头之外,它似乎可以完成工作,但那是你的代码。
% tocprob.tex SE 594371
\documentclass[12pt]{book}
\usepackage{tocloft}
\newcommand{\tocheader}{{%
\underline{\textbf{\larger{Title}}} \hfill \underline{\textbf{\larger{Page}}}\large
\par\bigskip% After heading
}}
\newcommand{\AtBeginShipoutClear}{\gdef\AtBegShi@Hook{}}
\renewcommand\tableofcontents{%
\cleardoublepage\phantomsection\addchaptertocentry{\normalfont\contentsname}
\section*{\Large\centering\contentsname \\[2cm]
\underline{\textbf{\larger{Title}}} \hfill \underline{\textbf{\larger{Page}}}\large
\@mkboth{%
\MakeUppercase\contentsname}{\MakeUppercase\contentsname}}
\AtBeginShipoutNext{%
\tocheader
}
}
% \onehalfspacing\@starttoc{toc}% % where is \onehalfspacing defined????
%} % this is one } too many
\renewcommand{\cftpartfont}{\normalfont\sffamily\bfseries}% \part font in ToC
\renewcommand{\cftchapfont}{\normalfont\Large\itshape} % \chapter font in ToC
\renewcommand{\cftsecfont}{\normalfont\large\slshape} % \section font in ToC
\renewcommand{\cftsubsecfont}{\normalfont\itshape} % \subsection font in ToC
\begin{document}
\tableofcontents
\chapter{First chapter}
\section{First section}
\subsection{First subsection}
\end{document}
据我所知,它会产生您想要的目录(页码大小相同)。我知道章节页的字体是粗体,但如果您不想要粗体,请使用\renewcommand{\cftchappagefont}{\normalfont}
您在其中一行代码中给出的字体。