在 Latex 中更改单词 "References" 的字体大小

Changing fontsize of word "References" in Latex

我是乳胶初学者,我正在写一篇文章。最后添加引用时。我做了:

\begin{thebibliography}{100}

Some bibitems here

\end{thebibliography}

编译后pdf出现“Reference”字样,而且太大了。我希望它的字体大小为 12pt。我该怎么做?

使用 titlesec 包,您可以临时更改章节标题的大小:

\documentclass[12pt]{article}

\usepackage{titlesec}

\begin{document}

test

\begingroup
\titleformat*{\section}{\fontsize{12pt}{14pt}\bfseries\selectfont}
\begin{thebibliography}{100}

Some bibitems here

\end{thebibliography}
\endgroup

\end{document}