如何更改章节/小节的字体大小?

如何更改章节/小节的字体大小?

我正在写一篇论文,要求章节标题采用12pt字体,我可以使用以下方法获取标题12pt

\section{\fontsize{12}{15}\selectfont Introduction}

但部分编号不会改变大小,有什么办法吗?

我也尝试过查看titlesec但未能找到任何合适的例子。

答案1

以下是使用sectsty包裹:

\documentclass{article}
\usepackage{sectsty}

\sectionfont{\fontsize{12}{15}\selectfont}

\begin{document}

\section{Test Section}
test

\end{document}

titlesec也可以使用以下包:

\documentclass{article}
\usepackage{titlesec}

\titleformat{\section}
  {\normalfont\fontsize{12}{15}\bfseries}{\thesection}{1em}{}

\begin{document}

\section{Test Section}
test

\end{document}

在此处输入图片描述

相关内容