请建议 .bst 名称

请建议 .bst 名称

我的.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]),您可以这样做,但正如您在示例中所展示的那样,没有编号,因此通常这样的参考书目会使用脚注来引用。

如果您愿意从纯文本转移到bibtexbiblatex您可以使用以下包来生成它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}

在此处输入图片描述

相关内容