如何修改 APA 6 样式的 bibtex 条目?

如何修改 APA 6 样式的 bibtex 条目?

我是法国 Latex 用户,正在寻找一种方法来将 bibtex 文件中的以下短句“retrieved from”修改为“récupéré de”。我该怎么做?

答案1

如果你使用biblatexapa样式,这将自动完成。你需要做的就是告诉它使用正确的本地化文件:

\documentclass{article}
\begin{filecontents}{\jobname.bib}
@electronic{electronic,
    Author = {Domi},
    Date-Added = {2016-06-16 19:40:18 +0000},
    Date-Modified = {2016-06-16 19:42:54 +0000},
    Lastchecked = {2016-06-16},
    Month = {06},
    Title = {How to modify a bibtex entry in {APA} 6 style?},
    Url = {http://tex.stackexchange.com/q/315035/2693},
    Urldate = {2016-06-16},
    Year = {2016}}
\end{filecontents}
\usepackage[french]{babel}
\usepackage[style=apa]{biblatex}
\DeclareLanguageMapping{french}{french-apa}
\addbibresource{\jobname.bib}
\begin{document}
\cite{electronic}
\printbibliography
\end{document}

代码输出

相关内容