我目前正在用法语写一篇长文档,我使用它apacite
来根据 APA 6th 对参考文献进行分类。当我编译 bib 文件时,我在引用网站地址之前获得了以下句子:“consulté sur”。我想将该句子改为:“récupéré de”(法语中“retrieved from”的翻译)。有人告诉我我可以使用biblatex
(如何修改 APA 6 样式的 bibtex 条目?)我该如何使用来做到这apacite
一点?
答案1
这是apacite
您要执行的操作的版本。本地化字符串位于french.apc
属于 的文件内apacite
。必须在文档开头更改它们,而不是在前言部分。
% !BIB TS-program = bibtex
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\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{apacite}
\bibliographystyle{apacite}
\AtBeginDocument{
\renewcommand{\BRetrieved}[1]{Récupéré le {#1}, de\ }%
\renewcommand{\BRetrievedFrom}{Récupéré de\ }%
}
\begin{document}
\cite{electronic}
\bibliography{\jobname}
\end{document}