请问如何在 overleaf 中获取 APA 引用样式(第 7 版)并将参考书目名称更改为参考文献。以下代码未给出结果
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[natbib=true,backend=biber,sorting=nyt,style=apa]{biblatex}
\renewcommand*{\bibfont}{\fontsize{10}{12}\selectfont}
\printbibliography{}
\renewcommand\bibname{References}
答案1
使用 biblatex 包,您可以使用键title=...
来更改参考文献的标题:
\documentclass[12pt]{report}
\usepackage[natbib=true,backend=biber,sorting=nyt,style=apa]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{knuth:ct}
\printbibliography[title={References}]
\end{document}