I have read through out many post concerning the use of multiple .bib files in order to use \nocite and multiple bib files, into a CV. The goal is my cv to have a different sector per bib files.
I saw that most suggestions pointed out the moderncv.tex package, thus I used the packages suggestion to adapt their commands and into my CV.
I use two different files a journal.bib and a conf.bib (exported from Mendeley).
the MWE for the two .bib files are for the journal.bib
@article{journal,
author = {Smith, A},
journal = {A journal},
title = {{A journal}},
year = {2016}
}
for the conf.bib
@inproceedings{Conf,
author = {Smith, A},
booktitle = {Conference 1},
title = {{Conference title}},
year = {2016}
}
The .tex file is MWE is
\documentclass{article} % Use the custom resume.cls style
\usepackage[left=0.2in,top=0.3in,right=0.2in,bottom=0.5in]{geometry}
\begin{document}
\renewcommand{\refname}{Articles}
\bibliographystyle{plain}
\nocite{journal}
\bibliography{journal}
\renewcommand{\refname}{Conferences}
\bibliographystyle{plain}
\nocite{Conf}
\bibliography{conf}
\end{document}
When i use only one the list in the document is fine, although when I move on and change into the second bib file the produced file does not correpond to the result I want.
I get this

Although what I want is something like that (it has been hand written it, not automated)

I have read and tried also other option such as \multibib, \biblatex etc. but perhaps I am missing something, or not understand it correctly.
Any help would be great, thank you very much
biber? – Guido Jun 24 '16 at 09:17\printbibliography[title={Preprints}, keyword={preprint}, resetnumbers=true]– Neil Apr 05 '18 at 23:09