为什么我的引文没有打印,参考书目也没有显示?

为什么我的引文没有打印,参考书目也没有显示?

我使用 Zotero 创建了一个 .bib 文件,并将其放在与 .tex 文件相同的文件夹中。这是文档代码:

\documentclass[a4paper, 11pt]{article}
\begin{document}

\title{The Effects of Selective Logging on Gliding Vertebrates}
\maketitle

TEXT  


\bibliographystyle{plain}
\bibliography{The Effects of Selective Logging on Gliding Vertebrates}

\end{document}

答案1

您没有包含您的.bib文件,因此我认为其内容不是问题的根源。

Bernard 正确地指出,您的.bib文件不应包含空格;这会阻止 BibTeX 正确编译。在下面的 MWE 中,我已将其重命名。

唯一其他的事情(从您提供的 MWE 来看)阻止引用正常工作的原因是缺少命令\cite{}- 鉴于您的简单引用样式,您不需要包含任何其他包。

document.tex

\documentclass[a4paper, 11pt]{article}
\begin{document}

\title{The Effects of Selective Logging on Gliding Vertebrates}
\maketitle

Cite here \cite{TestCitation}

\bibliographystyle{plain}
\bibliography{effects-selective-logging-vertebrates}
\end{document}

effects-selective-logging-vertebrates.bib

@Inbook{TestCitation,
    author="Author, The",
    title="The Book Title",
    year="2021",
    publisher="Springer",
    address="Address",
    pages="1--14",
}

输出: 引文-mwe

按照 Bernard 的评论进行编译。

希望这可以帮助!

相关内容