Latex: How-to
This page shares some tips on composing papers using 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?

Yes.
To resolve this, use it before \bibliography{}
\renewcommand{\refname}{References}
Then you will see the title replaced by "Reference".

Last updated
Was this helpful?