我的第一篇 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}