我正在寻找参考文献及其引文,如下所示。但是,我无法理解类似问题的不同文章或问答。有人能帮我用最少的命令简单地做到这一点吗?
介绍:
伯恩赛德 (Burnside) 的一个著名定理(参见 [Bur1904])指出,一个群的阶只能被两个素数整除,这个群是可解的。......
参考:
[BUR09] Burnside, W. (1904),《论有序群》paqb,伦敦数学会志,第 s2-1 卷,第 1 期 (1904),第 388–392 页。
因此,我在这里将参考文献按作者简称和年份进行索引。并且,我以相同的方式引用它们。如何做到这一点?
答案1
如果您使用 BibTeX,那么alpha
参考书目样式可能会让您感兴趣。假设参考书目条目的类型为@article
,则该alpha
样式会产生以下输出。
请注意,格式化的书目条目与 OP 所说的要求略有不同。(a)名字没有缩写,(b)该year
字段只出现一次,(c)三个字母的缩写是“Bur”,而不是“BUR”,(d)年份被截断为最后两位数字(此处:04
),(e)卷和期信息没有分别以字符串“volume”和“issue”为前缀。
如果输出alpha
不符合你的格式要求,我建议你熟悉定制围兜包及其makebst
实用程序。此实用程序可让您通过回答一系列多项选择题来创建高度定制的书目样式。pdflatex makebst
在命令提示符下键入以开始使用。
\documentclass{article} % or some other suitable document class
\begin{filecontents}[overwrite]{mybib.bib}
@article{burnside:1904,
author = "William S. Burnside",
title = "On groups of order $p^{\alpha}q^{\beta}$",
year = 1904,
journal = "Proceedings of The London Mathematical Society",
volume = "s2-1",
number = 1,
pages = "388-392",
}
\end{filecontents}
\usepackage{cite} % or some other suitable citation management package
\bibliographystyle{alpha}
\begin{document}
\noindent
A well known theorem of Burnside (see \cite{burnside:1904}) says that \dots
\bibliography{mybib}
\end{document}