在 BibTex 中引用演讲

在 BibTex 中引用演讲

我想引用艾伦·格林斯潘的演讲从 1996 年开始。适当的 bibtex 条目应该是什么样的?

答案1

在需要/想要什么样的书目风格方面,你没有太多的选择。但你可以这样做BibTeX

% usage: latex <file>, bibtex <file>, latex <file>, latex <file>
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Misc{greenspan1996,
  author =       {Greenspan, Alan},
  title =        {The Challenge of Central Banking in a Democratic
                  Society},
  year =         {1996},
  month =        {12},
  note =         {Remarks by Chairman Alan Greenspan at the Annual
                  Dinner and Francis Boyer Lecture of The American
                  Enterprise Institute for Public Policy Research,
                  Washington, D.C. [Accessed: 2013 06 20]},
url ={http://www.federalreserve.gov/boarddocs/speeches/1996/19961205.htm},
}
\end{filecontents}

\usepackage{natbib}
\usepackage{hyperref}

\begin{document}

I read: \cite{greenspan1996}.

\bibliographystyle{plainnat}
\bibliography{\jobname}

\end{document}

不过,我建议使用biblatex(和biber)。我认为即使是默认输出看起来也好得多:

% usage: latex <file>, biber <file>, latex <file>
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Online{greenspan1996,
  author =   {Greenspan, Alan},
  title =    {The Challenge of Central Banking in a Democratic
                  Society},
  date =     {1996-12-05},
  url = {http://www.federalreserve.gov/boarddocs/speeches/1996/19961205.htm},
  note =     {Remarks by Chairman Alan Greenspan at the Annual
                  Dinner and Francis Boyer Lecture of The American
                  Enterprise Institute for Public Policy Research,
                  Washington, D.C.},
  urldate =      {2013-06-20}}
\end{filecontents}

\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{hyperref}

\begin{document}  

I read: \cite{greenspan1996}.

\printbibliography
\end{document}

相关内容