如何更改 APA6 中的“参考文献”标题?

如何更改 APA6 中的“参考文献”标题?

我有一份需要用西班牙语撰写的文件,因此我必须将“参考文献”部分的标题更改为“我使用过的参考文献:

\renewcommand{\refname}{Referencias}
\renewcommand{\bibname}{Referencias}
\renewcommand{\mspart}{Referencias}

但他们都没有改变它,

\renewcommand{\mspart}{Referencias}

将标题更改为“ReferenciasReferences”。

我怎样才能更改这个标题?(我正在使用 BibTeX。)

答案1

如果您使用,babel则无需执行任何操作即可更改标题:

%%% The filecontents* environment is only for making the example self-contained
\begin{filecontents*}{\jobname.bib}
@article{x,
 author={X Y},
 title={Z},
 journal={J},
 year={1000},
}
\end{filecontents*}

%%% Here starts the document
\documentclass{apa6}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} % recommended encoding
\usepackage[spanish]{babel}

\usepackage{natbib}

\begin{document}

\cite{x}

\bibliographystyle{apa}
\bibliography{\jobname} % use your bib file name

\end{document}

在此处输入图片描述

答案2

我知道这是一个很晚的答案,但无论如何也许有人会觉得它有用。

这应该有效:

\renewcommand{\refname}{Referencias}
\printbibliography

由于某种原因,当您在序言中更新命令时它不起作用。

答案3

遇到了同样的问题。

这不是一个合适的解决方案,但它对我的目的有用。希望它能对你有所帮助。

这段代码将参考资料作为一个单独的部分,可以在内容中列出。\section*{}当然,如果您不想列出它,也可以使用它。

\section{Referencias}
\renewcommand{\section}[2]{}
\printbibliography

使用的解决方案https://tex.stackexchange.com/a/22654/51873

相关内容