我的.bib
文件标签如下:
@article{abraham,
Author = {Abraham, Ralph},
Date-Added = {2016-08-01 19:33:58 +0000},
Date-Modified = {2018-03-04 22:47:39 +0000},
Journal = {MAPS Bull.},
Number = {1},
Pages = {8--10},
Title = {Mathematics and the Psychedelic Revolution: Recollections of the Impact of the Psychedelic Revolution on the History of Mathematics and my Personal Story},
Volume = {18},
Year = {2008}}
所需的输出应为:
有人能建议哪个.bst
文件产生这个输出吗?拜托...
答案1
这看起来很像芝加哥纸币的风格。
我认为使用文件生成芝加哥注释样式是不可能的bst
。如果您想要编号的参考书目和编号的引文(即 [1]),您可以这样做,但正如您在示例中所展示的那样,没有编号,因此通常这样的参考书目会使用脚注来引用。
如果您愿意从纯文本转移到bibtex
,biblatex
您可以使用以下包来生成它biblatex-chicago
:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{abraham,
Author = {Abraham, Ralph},
Date-Added = {2016-08-01 19:33:58 +0000},
Date-Modified = {2018-03-04 22:47:39 +0000},
Journal = {MAPS Bull.},
Number = {1},
Pages = {8--10},
Title = {Mathematics and the Psychedelic Revolution: Recollections of the Impact of the Psychedelic Revolution on the History of Mathematics and my Personal Story},
Volume = {18},
Year = {2008}}
\end{filecontents}
\usepackage{biblatex-chicago}
\addbibresource{\jobname.bib}
\begin{document}
\null\vfill
Filler text \autocite{abraham}. Filler text \autocite{abraham}.
\printbibliography
\end{document}