Biblatex 在 Overleaf 上无法使用

Biblatex 在 Overleaf 上无法使用

这是新手遇到的问题,但由于某种原因,我就是无法让 Biblatex 在 Overleaf 上运行,尽管我输入了所有正确的命令,有人可以帮帮我吗?

引文显示不正确,并且参考书目未打印在末尾

应用于以下示例的代码:

\documentclass{article}
\usepackage[utf8]{inputenc}

\title{example}
\author{cameron}
\date{May 2020}

\usepackage[style=apa, backend=biber]{biblatex}
\addbibresource{Morin220520.bib}
\usepackage{graphicx}

\begin{document}

\maketitle

\section{Introduction}
There is a theory which states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.
There is another theory which states that this has already happened.
\cite[][]{traugott_constructionalization_2013}

\begin{figure}[h!]
\centering
\includegraphics[scale=1.7]{universe}
\caption{The Universe}
\label{fig:universe}
\end{figure}

\section{Conclusion}
``I always thought something was fundamentally wrong with the universe'' 

\printbibliography
\end{document}

输出

答案1

在查看错误消息时,我刚刚发现了问题的根源。我的 bib 文件中存在语法错误(涉及括号和圆括号的位置不对),我必须解决这些错误才能让 Biber 在我的文件上运行。完成这些操作后,我的 PDF 便成功编译了参考资料!谢谢

相关内容