我应该如何引用“LaTeX 简短数学指南”?

我应该如何引用“LaTeX 简短数学指南”?

为了创建 2017 年版的 BibTeX 条目,LaTeX 简明数学指南,版本 2.0Downes 和 Beeton 撰写的,它是什么类型的文档?它是报告、书籍、手稿、杂项还是其他东西?谷歌学术搜索中的条目因为指南的先前版本将其列为一本书,对于如此短的文档来说,这似乎是不正确的。另一方面,它缺少报告编号,所以可能也不是一份报告。

答案1

快速实验:

在此处输入图片描述

a.tex

\documentclass{article}
\begin{document}
Book~\cite{downes2017short}.
Booklet~\cite{downes2017short-booklet}.
Manual~\cite{downes2017short-manual}.
\bibliographystyle{abbrv}
\bibliography{a}
\end{document}

a.bib

@book{downes2017short,
  title =    {Short math guide for {\LaTeX}},
  author =   {Downes, Michael},
  year =     2017,
  edition =  {second},
  publisher =    {American Mathematical Society},
}

@booklet{downes2017short-booklet,
  title =    {Short math guide for {\LaTeX}},
  author =   {Downes, Michael},
  year =     2017,
  note =     {Second edition},
  howpublished = {American Mathematical Society},
}

@manual{downes2017short-manual,
  title =    {Short math guide for {\LaTeX}},
  author =   {Downes, Michael},
  year =     2017,
  edition =  {second},
  organization = {American Mathematical Society},
}

相关内容