Question

When I cite something in my Latex-File the rendered citation alsways has a comma behind the last one (see the Picture)... How can I make this comma disappear? Wrong Citation with comma at the end

The citations in the BibTex-File all look like this:

@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}
}

I call it as usual...

\cite{chun10}

And in my main document the important lines look like this:

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

I included the germbib-package...

I don't have any idea for a solution.

Was it helpful?

Solution

I can't reproduce what you see with below 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}

references.bib:

@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}
}

The output is the following:

Result of the MWE

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top