회의 진행 인용문에서 콜론 삭제

회의 진행 인용문에서 콜론 삭제

참고문헌을 생성하기 위해 라텍스 참고문헌 패키지를 사용하고 있는데 회의 진행을 위해 "In" 뒤에 콜론을 추가하는 것 같습니다. 이 올바른지? 그렇지 않다면 제거가 가능한가요?

\documentclass{template}
\begin{document}

\cite{egelman}


\bibliographystyle{vancouver}
\bibliography{thesis}

\end{document}

예시 인용....

Egelman S, King J, Miller RC, Ragouzis N, Shehan E. 보안 사용자 연구: 방법론 및 모범 사례. In: 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예상/요구하기 때문입니다. "Mary Beth Rosson"(회의 의장)과 "David Gilmore"(프로그램 의장)를 편집자로 나열하는 것을 고려해 보십시오. 그 동안 제공 및 필드 도 고려하십시오 .editor@inproceedingspublisheraddress

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}

관련 정보