在 Editorial Manager (EM) 中使用 APA 第 7 版格式格式化我的手稿

在 Editorial Manager (EM) 中使用 APA 第 7 版格式格式化我的手稿

我正在尝试将我的稿件提交给使用 Editorial Manager (EM) 的学术期刊。该期刊使用 APA 7th 格式。Biblatex 似乎是使用 APA 7th 格式格式化我的稿件的唯一方法,但 EM 不使用 Biber,我无法成功编译引文。我写了类似以下内容:

\documentclass[man]{apa7}
\usepackage[style=apa, backend=biber]{biblatex}
    \addbibresource{reference.bib}
\begin{filecontents*}{reference.bib}
    @Manual{r2024,
        author = {{R Core Team}},
        year = {2024},
        title = {{R}: A Language and Environment for Statistical Computing},
        organization = {R Foundation for Statistical Computing},
        address = {Vienna, Austria},
        url = {https://www.R-project.org/}
    }
\end{filecontents*}
\shorttitle{My study}
\begin{document}
I am citing R \parencite{r2024}.
\printbibliography
\end{document}

有人知道如何解决这个问题吗?

相关内容