Is there an easy way to get LaTeX with bibtex (not biblatex) to print references that are not cited in the text in a different color/format than references that are cited?
So in the MWE below I want the `exciting' paper listed in a different color in the reference list (automatically).
Thanks!
LaTex:
\documentclass{article}
\usepackage{natbib}
\bibliographystyle{apalike}
\begin{document}
\nocite{*}
\citet{boring} is boring.
\bibliography{simple}
\end{document}
simple.bib:
@article{boring,
title={Some idiotic paper},
author={A. Boring Author},
year={2014},
journal={Dumb and Dumber}
}
@article{exciting,
title={An exciting paper},
author={Smart Person},
year={2014},
journal={Excitement}
}
