我正在写一篇论文,要求章节标题采用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}