会議議事録の引用からコロンを削除する

会議議事録の引用からコロンを削除する

私は参考文献を生成するために 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 Extended Abstracts on Human Factors in Computing Systems;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タイプのエントリのフィールドが空でないことが期待/要求されるためです。編集者として「Mary Beth Rosson」(会議議長) と「David Gilmore」(プログラム議長) をリストすることを検討してください。その際、およびフィールド@inproceedingsも提供することを検討してください。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}

関連情報