我正在使用他们网站上提供的共享乳胶示例来建立参考书目。
这是我的 main.tex 文件
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{biblatex}
\addbibresource{sample.bib}
\begin{document}
Let's cite! The Einstein's journal paper \cite{1}
\printbibliography
\end{document}
这是我的 sample.bib 文件
@article{1,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004",
keywords = "physics"
}
我这样做了,文档中作为参考输出的内容就是我在 \cite{} 中的内容。
为什么这不起作用?
我现在收到一个错误,它说
cannot find 'mybibliography.bib'!