自定义目录中子部分的字体大小吗?

自定义目录中子部分的字体大小吗?

我正在尝试找到一种解决方案,使小节的字体大小小于节的字体大小。
事实上,我的 latex 代码已经不存在了。我有以下情况:

\documentclass[fleqn,10pt]{SelfArx} 
\begin{document}
\maketitle % Output the title and abstract box
\tableofcontents % Output the contents section
\thispagestyle{empty} % Removes page numbering from the first page

编写章节和小节时无需任何额外代码。
示例如下:

\section{The Existing Methods of Fuzzy Cluster Analysis for Categorical Data}

\subsection{Fuzzy k-means algorithm}

我找不到自定义目录中子部分字体大小的解决方案。我认为问题可能与文档类有关\documentclass[fleqn,10pt]{SelfArx}。我不能使用任何其他包来代替,SelfArx因为我将它用作我的文章模板。我当前的目录输出如下图所示。我不知道如何触摸子部分的字体大小。

目录

答案1

您可以使用该tocloft包。

\documentclass[fleqn,10pt]{SelfArx} 
\usepackage{tocloft} 

\renewcommand{\cftsecfont}{\small}
\renewcommand{\cftsubsecfont}{\footnotesize}
\renewcommand{\cftsecpagefont}{\small}
\renewcommand{\cftsubsecpagefont}{\footnotesize}

\begin{document}
\maketitle 
\tableofcontents 
\thispagestyle{empty} 

\section{The Existing Methods of Fuzzy Cluster Analysis for Categorical Data}
\subsection{Fuzzy k-means algorithm}

相关内容