当我在文中引用仅有两位作者时,我很难更改语言。
例如,对于丹麦语,我希望它写“...MacKinnan og Brittain”,而不是“...MacKinnan and Brittain”。
我正在使用 LaTex 编译器和 apa 引用样式。
我的书目和引用的序言代码是:
\usepackage[
backend=biber,
style=apa,
]{biblatex}
\addbibresource{bib.bib}
是否可以添加一些内容来更改引用文本中的“and”?我对 LateX 和 overleaf 还比较陌生,因此我并不擅长添加包。如果需要,请向我解释如何插入它 :)
进一步解释一下我的问题和引用。以下是我在文中的句子
Denne artikel af \cite{MacKinnon2020} omhandler implementering af mHealth i sundhedssektoren.
导致
在编译的pdf版本中。
我的 bib.bib 编码:
@article{MacKinnon2020,
author = {Grant E. MacKinnon and Evan L. Brittain},
doi = {10.1016/j.chest.2019.10.015},
issn = {00123692},
issue = {3},
journal = {Chest},
month = {3},
pages = {654-664},
title = {Mobile Health Technologies in Cardiopulmonary Disease},
volume = {157},
year = {2020},
}
答案1
biblatex-apa
如果您告诉它,它会说丹麦语。如果丹麦语文档中的引文显示为英语,则您可能没有正确配置babel
/ polyglossia
。
\documentclass[danish]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=apa]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{MacKinnon2020,
author = {Grant E. MacKinnon and Evan L. Brittain},
doi = {10.1016/j.chest.2019.10.015},
issn = {00123692},
number = {3},
journal = {Chest},
month = {3},
pages = {654-664},
title = {Mobile Health Technologies in Cardiopulmonary Disease},
volume = {157},
year = {2020},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Denne artikel af \textcite{MacKinnon2020} omhandler implementering af mHealth i sundhedssektoren.
\printbibliography
\end{document}