-1

Latex ファイルで何かを引用すると、レンダリングされた引用の最後の引用の後ろに常にコンマがあります (図を参照)...どうすればこのコンマを消すことができますか? 末尾にカンマがある間違った引用

BibTex ファイルの引用はすべて次のようになります。

@inproceedings{chun10,
  title={Vizcept: Supporting synchronous collaboration for constructing visualizations in intelligence analysis},
  author={Chung, H. and Yang, S. and Ma{\ss}jouni, N. and Andrews, C. and Kanna, R. and North, C.},
  booktitle={Visual Analytics Science and Technology (VAST), 2010 IEEE Symposium on},
  pages={107--114},
  year={2010},
  organization={IEEE}
}

いつものように呼んでいます...

\cite{chun10}

私のメインドキュメントでは、重要な行は次のようになります。

\bibliographystyle{alpha}
\bibliography{./Bib/frie13}

私はgerbibパッケージを含めました...

解決策がわかりません。

4

1 に答える 1

1

以下の MWE で表示される内容を再現できません。

test.tex:

\documentclass[a4paper]{article}

\usepackage{ngerman}
\usepackage{bibgerm}

\begin{document}

\section{First}

This sentence cites \cite{chun10}.

\bibliographystyle{alpha}
\bibliography{references}

\end{document}

参考文献.よだれかけ:

@inproceedings{chun10,
  title={Vizcept: Supporting synchronous collaboration for constructing visualizations in intelligence analysis},
  author={Chung, H. and Yang, S. and Ma{\ss}jouni, N. and Andrews, C. and Kanna, R. and North, C.},
  booktitle={Visual Analytics Science and Technology (VAST), 2010 IEEE Symposium on},
  pages={107--114},
  year={2010},
  organization={IEEE}
}

出力は次のとおりです。

MWEの結果

于 2013-03-18T11:38:15.440 に答える