我需要得到这样的东西:
Jaggi, Maya。“谭恩美访谈”。《卫报》。卫报新闻与传媒,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}}
在 Latex 中,使用芝加哥手册样式。我面临的主要问题是使用、、等中的哪一个。@Book
我已经尝试了所有这些@Article
,但无法获得上述结果。@Misc
@Online
上述样式的来源是https://libguides.williams.edu/citing/chicago-author-date#s-lg-box-12037256
如果有人使用过任何技术来实现这一点,我将不胜感激。
答案1
您可以使用biblatex-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}