我正在使用在终端中创建的自己的参考书目样式latex make bst
。我尝试了几次不同的组合(唯一有效的组合是在创建 bst 文件的提示窗口中使用默认答案),但我一直收到相同的错误Package natbib: Bibliography not compatible with author-year citations
。
(已经检查过类似的问题,但没有这个问题的答案)
这是我的源代码:
\documentclass{beamer}
\usepackage{natbib}
\bibliographystyle{institut-slawistik-hu-berlin}
\usepackage[german]{babel}
\begin{document}
\begin{frame}
\frametitle{Example citation}
This is an example text with a citation from \cite{burzio1988ItalianSyntaxGovernmentBindingApproach}
\end{frame}
\begin{frame}
\frametitle{Bibliography}
\bibliography{MyLibrary}
\end{frame}
\end{document}
这是 bib 文件 (也在工作文件夹中) 的 bib 信息:
@article{burzio1988ItalianSyntaxGovernmentBindingApproach,
title = {Italian {{Syntax}}: {{A Government-Binding Approach}}},
shorttitle = {Italian {{Syntax}}},
author = {Burzio, Luigi},
date = {1988-03},
journaltitle = {Language},
shortjournal = {Language},
volume = {64},
number = {1},
eprint = {414791},
eprinttype = {jstor},
pages = {130},
issn = {00978507},
doi = {10.2307/414791}
}
结果如下:
我确实需要解决这个风格问题,因为它是我所在学院针对此作品和其他作品的风格指南的一部分。(这种风格也非常有效)。所以我真的很想用这种风格来修复。非常感谢您的帮助。