如何使用《芝加哥風格手冊》在 Latex 中引用報紙文章

如何使用《芝加哥風格手冊》在 Latex 中引用報紙文章

我需要得到這樣的東西:

賈吉,瑪雅。 “採訪譚恩美。”守護者。衛報新聞與媒體,2001 年 3 月 3 日。https://www.theguardian.com/books/2001/mar/03/fiction.features

使用代碼:

@Electronic{jaggi_2001, 
title={Interview with Amy Tan}, 
url= {theguardian.com/books/2001/mar/03/fiction.features}, 
journal={The Guardian}, 
publisher={Guardian News and Media}, 
author={Jaggi, Maya}, 
year={2001}, 
month={Mar}}

在乳膠中,使用芝加哥手動風格。我面臨的主要問題是使用@Book@Article、等中的哪一個@Misc@Online

上述樣式的來源位於https://libguides.williams.edu/citing/chicago-author-date#s-lg-box-12037256

如果有人為此使用過任何技術,我將不勝感激。

在此輸入影像描述

答案1

您可以使用andbiblatex-chicago代替(可能:我不知道這是什麼,但大概它是 的修改版本)。\bibliographystyle{chicago}\usepackage{mychicago}chicago.sty

biblatex並且biblatex-chicago高度且易於定制,並且都有優秀的文檔。該網站上還有很多有關使用它們的問題。

一個簡單的 MWE 看起來biblatex-chicago像:

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{jaggi_2001,
  entrysubtype = {newspaper},
  author = {Jaggi, Maya},
  date = {2001-03-03},
  title = {Interview with Amy Tan},
  journaltitle = {The Guardian},
  url = {https://www.theguardian.com/books/2001/mar/03/fiction.features}
}
\end{filecontents}
\usepackage[authordate]{biblatex-chicago}
\addbibresource{\jobname.bib}
\begin{document}
Filler text \autocite{jaggi_2001}.
\printbibliography
\end{document}

輸出

相關內容