TOC - 将部分标题用小写字母表示,同时保留其他特征

TOC - 将部分标题用小写字母表示,同时保留其他特征

我正在创建目录,并希望将部分标题改为小写字母,同时保留其当前大小等(下面的 MWE)。

我尝试过,\renewcommand{\cftpartfont}{\scshape}但是这会导致粗体丢失并且尺寸减小。

有没有办法用小型大写字母保留这些特征?

\documentclass[a4paper, 12pt]{report}

\usepackage{libertine}
\usepackage[libertine]{newtxmath}

\setcounter{tocdepth}{1}
\usepackage[titles]{tocloft}

\begin{document}

\tableofcontents

\part{Part 1}
\chapter{Chap 1}

\part{Part 2}
\chapter{Chap 1}
\chapter{Chap 2}

\end{document}

答案1

给你:

\documentclass[a4paper, 12pt]{report}

\usepackage{libertine}
\usepackage[libertine]{newtxmath}

\setcounter{tocdepth}{1}
\usepackage[titles]{tocloft}
\renewcommand\cftpartfont{\bfseries\scshape}

\begin{document}

\tableofcontents

\part{Part 1}
\chapter{Chap 1}

\part{Part 2}
\chapter{Chap 1}
\chapter{Chap 2}

\end{document} 

在此处输入图片描述

相关内容