I have two separate bib files. One for journals and other for conference publications. Now I want to publish both of them in the CV. Any idea how to do it?
\renewcommand{\refname}{Journal Publications}
\nocite{*}
\bibliographystyle{IEEEtran}
\bibliography{MMjournals}
\renewcommand{\refname}{Conference Publications}
\nocite{*}
\bibliographystyle{IEEEtran}
\bibliography{MMconference}
The problem with above code is, it is publishing the MMjournals twice. It did not publish the conference proceedgins. How to fix it?