我正在使用 latex 书目包来生成我的书目,但它似乎在会议论文集的“In”后面添加了一个冒号。这是正确的吗?如果不正确,是否可以将其删除?
\documentclass{template}
\begin{document}
\cite{egelman}
\bibliographystyle{vancouver}
\bibliography{thesis}
\end{document}
示例引用....
Egelman S、King J、Miller RC、Ragouzis N、Shehan E。安全用户研究:方法论和最佳实践。收录于:CHI '07 计算机系统人为因素扩展摘要;2007 年。第 2833–2836 页。
@inproceedings{egelman,
author = {Egelman, Serge and King, Jennifer and Miller, Robert C. and Ragouzis, Nick and Shehan, Erika},
title = {Security User Studies: Methodologies and Best Practices},
year = {2007},
booktitle = {CHI '07 Extended Abstracts on Human Factors in Computing Systems},
pages = {2833–2836},
numpages = {4},
}
答案1
“In: ”之所以出现在格式化的书目条目中,是因为vancouver
书目样式要求/要求editor
类型条目的字段@inproceedings
非空。考虑将“Mary Beth Rosson”(会议主席)和“David Gilmore”(程序主席)列为编辑。在此过程中,还请考虑提供publisher
和address
字段。
以下屏幕截图显示了将该editor
字段添加到条目的结果(已添加突出显示)。
\documentclass{article}
\begin{filecontents}[overwrite]{thesis.bib}
@inproceedings{egelman,
author = "Egelman, Serge and King, Jennifer and Miller,
Robert C. and Ragouzis, Nick and Shehan, Erika",
title = "Security User Studies: Methodologies and Best
Practices",
year = 2007,
editor = "Mary Beth Rosson and David Gilmore",
publisher = "Association for Computing Machinery",
address = "New York, NY",
booktitle = "CHI~'07 Extended Abstracts on Human Factors in
Computing Systems",
pages = "2833--2836",
numpages = 4,
}
\end{filecontents}
\bibliographystyle{vancouver}
\begin{document}
\cite{egelman}
\bibliography{thesis}
\end{document}