乳胶中的芝加哥风格参考

乳胶中的芝加哥风格参考

我必须使用芝加哥参考文献格式作为我的论文参考文献。下面是两个参考文献示例,谁能告诉我哪个是芝加哥格式?

Gao, G. 和 K. Whitehouse (2009)。自编程恒温器:根据家庭居住模式优化后退计划。在 ACM 首届建筑节能嵌入式传感系统研讨会论文集,第 67{72 页。ACM。

或者

Ge Gao 和 Kamin Whitehouse。自编程恒温器:根据家庭居住模式优化后退时间表。在 ACM 第一届建筑节能嵌入式传感系统研讨会论文集,第 67 页至第 72 页。ACM,2009 年。

我需要使用第一个芝加哥风格。但我无法使用显示的第一个选项生成参考编号。

我正在使用以下乳胶包

\bibliographystyle{Classes/CUEDbiblio}
\bibliographystyle{Classes/jmb}
\bibliographystyle{plainnat} %this works with package natbib

\bibliographystyle{Classes/chicago} % bibliography style
\renewcommand{\bibname}{References} % changes default name Bibliography to References
%\bibliographystyle{abbrv}
\bibliography{References/references} % References file
\addcontentsline{toc}{chapter}{References} %adds References to contents page

有人能帮助我吗?如何解决这个问题

答案1

这两个选项中的第一个几乎是“芝加哥”风格。我不清楚您要解决哪个问题,但我的印象是您需要数字样式而不是作者年份样式的引文标注。如果这个印象是正确的,您可以通过使用natbib以下选项加载引文管理包来实现您的目标numbers

\usepackage[numbers]{natbib}
\bibliographystyle{chicago}

完整 MWE 的输出(最小工作示例):

在此处输入图片描述

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{references.bib}
@inproceedings{xyz,
author    = "Ge Gao and Kamin Whitehouse",
title     = "The Self-Programming Thermostat: Optimizing Setback 
             Schedules based on Home Occupancy Patterns",
booktitle = "Proceedings of the First ACM Workshop on Embedded 
             Sensing Systems for Energy-Efficiency in Buildings", 
pages     =  "67-72", 
publisher = "ACM", 
year      = 2009,
}
\end{filecontents*}
\usepackage[numbers]{natbib} % omit 'numbers' option if authoryear-style citation callouts are needed
\bibliographystyle{chicago} % bibliography style
\begin{document}
According to \cite{xyz}, \ldots

\bibliography{references} % bib entries are in 'references.bib'
\end{document}

相关内容