我在我的文档中使用 MinioPro 和 MyriadPro 字体。
为了进行编译,我使用了 pdfLaTex。
我想改变目录的格式。
我正在寻找一个选项,使 Myriad Pro 目录中的章节号和页码(章节的)变为粗体。
这里是 MWE:
\documentclass[11pt]{scrreprt}
\usepackage[textlf,mathlf]{MinionPro}
\renewcommand{\sfdefault}{Myriad-LF}
\usepackage[toc,eqno,enum,bib,lineno]{tabfigures}
\begin{document}
\tableofcontents
\chapter{Chapter One}
\section{Section One}
\section{Section Two}
\chapter{Chapter Two}
\section{Section One}
\section{Section Two}
\end{document}
以下是目录的图片:
非常感谢您的提示!
@maetra:我尝试在新文档中通过复制粘贴的方式编写代码,但结果却不同。 为什么会有差异?谢谢!
答案1
这应该可以解决问题,只需让包tocloft
帮助您:
平均能量损失
\documentclass{scrreprt}
\usepackage[textlf,mathlf]{MinionPro}
\usepackage[toc,eqno,enum,bib,lineno]{tabfigures}
\renewcommand{\sfdefault}{MyriadPro-LF}
\usepackage[titles]{tocloft}
\renewcommand{\cftchapfont} {\sffamily\bfseries}
\renewcommand{\cftchappagefont} {\sffamily\bfseries}
\begin{document}
\tableofcontents
\chapter{Chapter One}
\section{Section One}
\section{Section Two}
\chapter{Chapter Two}
\section{Section One}
\section{Section Two}
\end{document}