如何调整目录中条目数字的字体?

如何调整目录中条目数字的字体?

难看的字体大小

我的第一篇 LaTeX 文章看起来很丑,如上所示。

如何调整条目数字,使其看起来更大、更粗?并且不更改以下标题文本?

\documentclass[a4paper]{article}

\usepackage[adobefonts]{ctex}

\title{Hello, LaTeX}
\author{[email protected]}
\date{\today}

\begin{document}
\maketitle
\tableofcontents

\section{Hello, Section!}
Section 1

\subsection{Hello, SubSection!}
SubSection 1

\end{document}

答案1

加载tocloft包并在前言中添加以下几行:

\renewcommand{\cftsecpresnum}{\large\bfseries}
\renewcommand{\cftsubsecpresnum}{\large\bfseries}

平均能量损失

\documentclass[a4paper]{article}

\usepackage{tocloft}

\renewcommand{\cftsecpresnum}{\large\bfseries}
\renewcommand{\cftsubsecpresnum}{\large\bfseries}

\usepackage[adobefonts]{ctex}

\title{Hello, LaTeX}
\author{[email protected]}
\date{\today}

\begin{document}
\maketitle
\tableofcontents

\section{Hello, Section!}
Section 1

\subsection{Hello, SubSection!}
SubSection 1

\end{document} 

输出:

在此处输入图片描述

如果你也\subsubsection

\renewcommand{\cftsubsubsecpresnum}{\large\bfseries}

相关内容