從會議記錄引用中刪除冒號

從會議記錄引用中刪除冒號

我正在使用乳膠參考書目包來產生我的參考書目,但它似乎在會議記錄的“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 年。 p。 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”(程序主席)列為編輯。當您這樣做時,也要考慮提供publisheraddress欄位。

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}

相關內容