【发布时间】:2022-01-02 15:22:39
【问题描述】:
我将nat bib 用于beamer,并且我的引用都显示为n.d.,尽管引用在 bib 文件中有日期。
\documentclass{beamer}
\usepackage{natbib}
\bibliographystyle{agsm}
\usepackage[german]{babel}
\begin{document}
\begin{frame}
\frametitle{Example citation}
This is an example text with a citation from \citep{burzio1988ItalianSyntaxGovernmentBindingApproach} (← which is without date here and in the bibliography)
\end{frame}
\begin{frame}
\frametitle{Bibliography}
\bibliography{MyLibrary}
\end{frame}
\end{document}
这是 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}
}
natbib 上的所有引用样式都会发生这种情况。我不知道发生了什么。非常感谢您的帮助。
【问题讨论】: