> For the complete documentation index, see [llms.txt](https://docs.zhizhiyang.cn/raphaels-knowledgebase-beta/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zhizhiyang.cn/raphaels-knowledgebase-beta/intro/latex-how-to.md).

# Latex: How-to

$$
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

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

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

![It happens like this](/files/ooE5XfWkuVZVDRd9Ep2C)

**Yes.**

To resolve this, use it before `\bibliography{}`

```latex
\renewcommand{\refname}{References}
```

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

![image-20230912171537335](/files/XkmNYIexxSLYXzsuoryX)
