利用LaTeX自动生成Chicago author-date参考文献格式

2022-05-06
#LaTeX

1. 简介

Taylor & Francis Online: Peer-reviewed Journals的期刊采用Chicago author-date参考文献的格式,比如: Geo-spatial Information Science

其中,参考格式的具体内容,可以下载此文件,见: https://files.taylorandfrancis.com/tf_ChicagoAD.pdf

2. LaTeX实现Chicago author-date参考文献格式

首先,需要interact.cls文件,下载地址为:interact.cls

\documentclass[]{interact}

其次,使用biblatex-chicago包(此包的详细说明文档见: https://www.ctan.org/pkg/biblatex-chicago):

\usepackage[authordate,backend=biber,doi=true,isbn=false]{biblatex-chicago}
\bibliography{reference}

这里,reference是对应reference.bib参考文献的bib文件名。其中,文献的作者名,建议用缩写。

然后,去掉参考文献中重复人名用横线的设置:

\makeatletter
\AtEveryBibitem{\global\undef\bbx@lasthash}
\makeatother

而后,一般参考文献引用的命令\cite{}改为\textcite{}\citep{}改为\autocite{}

\textcite{}
\autocite{}

最后,在文章中显示参考文献的具体内容:

\printbibliography

3. 参考