Possible duplicate here My requirements are as follows:
- I use a separate .bib file that contains all the entries.
- I use
\cite{CiteKey1,CiteKey2,CiteKey3}. I want to highlight\citecolor{CiteKey2}in different color (say blue) in the reference section. I don't know how to define\citecolor. - I want to highlight for several references.
\documentclass[journal]{IEEEtran}
\usepackage{xcolor,cite}
\begin{document}
I use~\cite{CiteKey1,CiteKey2,CiteKey3}`. I want to highlight~\citecolor{CiteKey2}` in different color (say blue) in the reference section.
\bibliographystyle{IEEEtran}
\bibliography{MBibliography}
\end{document}
MBibliography.bib contains
@ARTICLE{CiteKey1,
author={Author 1},
journal={Journal Name1},
title={Title},
year={2010},
}
@ARTICLE{CiteKey2,
author={Author 2},
journal={Journal Name2},
title={Title},
year={2010},
}
@ARTICLE{CiteKey3,
author={Author3},
journal={Journal Name3},
title={Title},
year={2010},
}


natbib: http://tex.stackexchange.com/questions/224596/different-style-color-for-some-specific-references-using-natbib – Steven B. Segletes Sep 04 '16 at 01:00