Latex: How-to

This page shares some tips on composing papers using Latex.

Yes,ThisisLaTeX!Yes,\, This\, is\, \LaTeX{}!

Change the Default Title of Biliography Section

After using the package \usepackage{ctex}, I found the title of bibliography, which is introduced by

\bibliographystyle{plain}
\bibliography{bibliography.bib}

was change from English "References" to "参考文献". Is there anyway to avoid this?

It happens like this

Yes.

To resolve this, use it before \bibliography{}

\renewcommand{\refname}{References}

Then you will see the title replaced by "Reference".

image-20230912171537335

Last updated

Was this helpful?