利用LaTeX自动生成Chicago author-date参考文献格式
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