Bibtex 和芝加哥风格的引用?

Bibtex 和芝加哥风格的引用?

在里面《芝加哥格式手册》引用指南我发现一种方法是引用期刊文章,并将期刊、书籍和论文用斜体显示。但是当我运行下面的代码时,输​​出显示期刊文章标题未引用。这是怎么回事?

输出

% test.tex
\documentclass{article}
\usepackage{natbib}
\begin{document}
  \nocite{*} 
  \bibliographystyle{chicago}
  \bibliography{test}
\end{document}

% test.bib
@phdthesis{Doe11,
  title={The Title},
  author={Doe, J.},
  year={2011},
  school={University of Mars}
},

@article{JohSil05,
  title={EbayesThresh: R programs for Empirical Bayes Thresholding},
  author={Johnstone, I.M. and Silverman, B.W.},
  journal={Journal of Statistical Software},
  volume={12},
  number={8},
  pages={1--38},
  year={2005}
},

@book{Joh11,
    title = {Gaussian estimation: Sequence and multiresolution models},
    author = {Johnstone, Ian M.},
    year = {2011},
},

手册中的示例:

Joshua I. Weinstein,《柏拉图理想国中的市场》古典语文学104 (2009): 440。

答案1

您可以使用biblatex-chicago经过一些额外修改的包来相当轻松地实现这一点。该biblatex-chicago包建议使用biber进行排序,而不是bibtex

正如一些评论所指出的,在自然科学和行为科学中,我认为引号很少使用。

\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{filecontents}{\jobname.bib}
@phdthesis{Doe11,
  title={The Title},
  author={Doe, J.},
  year={2011},
  school={University of Mars}
},

@article{JohSil05,
  title={EbayesThresh: R programs for Empirical Bayes Thresholding},
  author={Johnstone, I.M. and Silverman, B.W.},
  journal={Journal of Statistical Software},
  volume={12},
  number={8},
  pages={1--38},
  year={2005}
},

@book{Joh11,
    title = {Gaussian estimation: Sequence and multiresolution models},
    author = {Johnstone, Ian M.},
    year = {2011},
}
\end{filecontents}
\usepackage[authordate]{biblatex-chicago}
\DeclareFieldFormat[article]{title}{\mkbibquote{#1}} % make article titles in quotes
\DeclareFieldFormat[thesis]{title}{\mkbibemph{#1}} % make theses italics
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

代码输出

答案2

关于引号的指导是一种建议,而不是要求。 芝加哥(第 16 版,印刷版)15.45 在这里明确地赋予了自由:

出版物倾向于使用句子式大写字母作为标题。特别是在自然科学领域,许多使用作者—日期格式版本的出版物都倾向于使用句子式大写...此外,喜欢这种风格的作品可能会避免在章节或文章标题中使用引号。

据我所知,这些引号在自然科学中根本不使用;措辞(“许多”、“可能”)是芝加哥执着于过去。但这在人文学科中很正常。

芝加哥Bibtex 不太支持引用样式,但在这种情况下,chicago.bst如果您愿意的话,应该很容易更改以支持这些引号。

相关内容