I am writing my PhD thesis and I should add the list of my own publication. I am not using natbib nor biblatex. Because with natbib I can't use the alpha style and biblatex is incompatible with the other packages I am using. I can only add a list that contains all my own publications but i need to divide them (journal papers and conference papers). I didn't find any solution to do this, my main tex is below and it works fine:
\documentclass[sommairechap,stylejchiquet]{these_gi}
\usepackage{multibib}
\newcites{dk}{Liste des publications}
\begin{document}
\include{chap1/chap1}
\include{chap2/chap2}
% ==================================================================
% CONCLUSION
\citedk{key}
\bibliographystyledk{alpha}
\bibliographydk{biblio}
\bibliographystyle{alpha}
\bibliography{biblio}
\end{document}
natbibcitation management package is supposed to be incompatible with thealphabibliography style. Just don't use the\citetcommand; the command\citepworks fine. – Mico Jul 17 '14 at 12:58biblatexcan do what they do already. – jon Jul 17 '14 at 15:51