I'm not very good at LaTeX, and writing my thesis is a bit problematic. I use Kile, and try to make a personnalised bibliography with bibtex, using both bibtopics (kind of bibunit) and natbib.
The thing is, I get in my bibliography always the "first name" and then the "last name", so like "Albert Einstein".
I've tried to fix it by changing the .bst (plainnat.bst) with a code line I found in Internet. Didn't work.
Worse, I think my .bst file is simply not used when compiling. I tried non-existing .bst names, and the bibliography always look the same.
So I think that my specifications are in some way just not taken into account ... Does anybody have an idea ? I'm kind of desperated ...
In my preamble I have :
Code: Select all
\usepackage{bibtopics}
\usepackage[round]{natbib}
\usepackage{amsmath}
Code: Select all
%%% Intégration des fichiers bibtex dans une bibliographie thématique %%%
\bibliographystyle{plainnat.bst} % On annonce le style de la bibliographie. Peut être changé. Le fichier siam.bst est livré avec Bredele.
\bibliography{primaire,archive,scolaire,ref,secondaire} % On spécifie ici les fichiers qui vont être utilisés. Dans cet exemple, il y en a deux: biblio_prim et biblio_sec.
[...]
\section*{Bibliographie primaire}
%\subsubsection*{Sources imprimées :}
%\newpage
\renewcommand{\refname}{Sources imprimées :}
\begin{bibunit}[plainnat]
\nocite{*}
\putbib[primaire]
\end{bibunit}
[...]
Thank you,
Thomas