如何使用 Biber 和 Windy City 以芝加哥作者日期格式引用报纸文章?
我的文件中有以下条目refs.bib
:
@article{intlrankingsandconflicts,
author = {Scott Jaschik},
title = {International Rankings and Conflicts of Interest},
journal = {Inside Higher Ed},
issue = {May 3},
year = {2021},
url={https://www.insidehighered.com/admissions/article/2021/05/03/international-rankings-and-conflicts-interest}
}
我的文件标题如下.tex
:
\usepackage[reflist=true,style=windycity]{biblatex}
\addbibresource{refs.bib}
使用 Biber 编译文档,然后使用 PDFLaTeX 生成以下参考书目:
Jaschik, Scott。2021 年。“国际排名与利益冲突。”高等教育内部,2021 年 5 月 3 日
https://www.insidehighered.com/admissions/article/2021/05/03/international-rankings-and-conflicts-interest
。
请注意“May 3”和“2021”之间缺少逗号。正确的格式是
Jaschik, Scott。2021 年。“国际排名与利益冲突。”高等教育内部,2021年5月3日
https://www.insidehighered.com/admissions/article/2021/05/03/international-rankings-and-conflicts-interest
。
如所述在 CMOS 网站上。
答案1
windycity
有一个详尽的文献资料和详尽的示例.bib
文件。
报纸文章在第 14.191 条中讨论报纸文章的基本引用格式相关.bib
条目为在 ll. 2131-2159 中windycity.bib
。基于此,我们可以得出以下条目
\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[backend=biber, style=windycity]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{intlrankingsandconflicts,
author = {Scott Jaschik},
title = {International Rankings and Conflicts of Interest},
journal = {Inside Higher Ed},
date = {2021-05-03},
url = {https://www.insidehighered.com/admissions/article/2021/05/03/international-rankings-and-conflicts-interest},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson,intlrankingsandconflicts}
\printbibliography
\end{document}
唯一的变化是使用date
日期字段,而不是用和将东西拼凑year
在一起issue
。