我正在使用 Beamer 制作幻灯片,对于参考文献,我将其引用到 .bib 文件。在该文件中,我有以下条目:
@mastersthesis{kooshathesis,
title={Disease-Gene Association Using a Genetic Algorithm},
author={Tahmasebipour, Koosha},
year={2014},
school={Brock University}
}
我的问题是,在生成的幻灯片中,它无法识别,\cite{kooshathesis}
但我的 .bib 文件的其他条目没有问题。
这是@masterthesis 的问题吗?
编辑:正如这里所建议的,我在这里包含一个 MVE:
\documentclass{beamer}
\usetheme{Marburg}
\setbeamertemplate{bibliography item}{[\theenumiv]}
\begin{document}
\begin{frame}
I want to cite this work \cite{kooshathesis}, but it doesn't work!
\end{frame}
\begin{frame}[allowframebreaks]
\frametitle{References}
\tiny{\bibliographystyle{abbrv} }
\bibliography{references}
\end{frame}
\end{document}