0

I want to cite a conference using ieeetran style as in the following:

@incollection{fuext,
    year={2004, May 2-6},
    booktitle={$23^{rd}$ International Conference on the Theory and Applications of Cryptographic Techniques (EUROCRYPT)},
    volume={3027},
    title={Fuzzy Extractors: How to Generate Strong Keys from Biometrics and Other Noisy Data},
    publisher={{LNCS}, Springer Berlin Heidelberg},
    author={Dodis, Yevgeniy and Reyzin, Leonid and Smith, Adam},
    address={Interlaken, Switzerland},
    pages={523-540},
}

The output is coming like:

Y. Dodis, L. Reyzin, and A. Smith, "Fuzzy extractors: How to generate strong keys from biometrics and other noisy data," in 23rd International Conference on the Theory and Applications of Cryptographic Techniques (EUROCRYPT). Interlaken, Switzerland: LNCS, Springer Berlin Heidelberg, 2004, May 2-6, vol. 3027, pp. 523–540.

The output which I wish to have:

Y. Dodis, L. Reyzin, and A. Smith, "Fuzzy extractors: How to generate strong keys from biometrics and other noisy data," in 23rd International Conference on the Theory and Applications of Cryptographic Techniques (EUROCRYPT), Interlaken, Switzerland, LNCS, Springer Berlin Heidelberg, 2004, May 2-6, vol. 3027, pp. 523–540.

Johannes_B
  • 24,235
  • 10
  • 93
  • 248

1 Answers1

1

The recommended way to cite a conference proceeding is to use @inproceedings instead of @incollection in ieeetrans. In either cases, IEEE does not want you to change those styles when submitting an article to them. But your requirement seems little different.

One way to achieve the desired output is to use a customized version of IEEEtrans.bst. Go for it only if you have lot of similar bib entries else go for the workaround given below.

You can achieve the desired output by including publisher entry in address. A MWE is given below:

\documentclass[journal]{IEEEtran}
\usepackage{filecontents}
\begin{filecontents}{refs.bib}
@incollection{fuext1,
    year={2004, May 2-6},
    booktitle={$23^{rd}$ International Conference on the Theory and Applications of Cryptographic Techniques (EUROCRYPT)},
    volume={3027},
    title={Fuzzy Extractors: How to Generate Strong Keys from Biometrics and Other Noisy Data},
    publisher={{LNCS}, Springer Berlin Heidelberg},
    author={Dodis, Yevgeniy and Reyzin, Leonid and Smith, Adam},
    address={Interlaken, Switzerland},
    pages={523-540},
}

@incollection{fuext2,
    year={2004, May 2-6},
    booktitle={$23^{rd}$ International Conference on the Theory and Applications of Cryptographic Techniques (EUROCRYPT)},
    volume={3027},
    title={Fuzzy Extractors: How to Generate Strong Keys from Biometrics and Other Noisy Data},
    author={Dodiz, Yevgeniy and Reyzin, Leonid and Smith, Adam},
    address={Interlaken, Switzerland, {LNCS}, Springer Berlin Heidelberg},
    pages={523-540},
}
\end{filecontents}

\begin{document}
Old \cite{fuext1} and New\cite{fuext2}.
\bibliographystyle{IEEEtran}
\bibliography{refs}
\end{document}

Output:

enter image description here

PS: Author name in the second entry has edited to avoid the dash because of same author name.

nidhin
  • 7,932