I use
\bibliographystyle{apalike}
It is perfect to me, except for one (not so little) detail, the way authors names are displayed in the bibliography (example) :
Dupond, P., Beh, M., ...
LastName1, FirstName1, LastName2, FirstName2, ...
you will have to admit, this is completly awful to read, the point/comma thing or the use of the same separator (comma) for firstname-lastname and different authors is confusing and wrong, I would like to obtain something like that :
P. Dupond, M. Beh, ...
FirstName1 LastName1, FirstName2 LastName2, ...
but I don't want to change the way apalike manage everything else (especialy citation display \cite), is there any way I can achieve this? Or any other bibliographystyle that might suits my needs?
Edit 1 : MWE under Bernard suggestion, everything worked previously, now the citation is just bold (no link) and no bibliography appears anywhere
\documentclass[
twoside,
a4paper,
11pt,
chapterprefix=true]{scrbook}
\usepackage[UTF8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[francais]{babel}
\usepackage[style=apa]{biblatex}
\usepackage[ocgcolorlinks, allcolors=blue]{hyperref}
\addbibresource{./bib/database.bib}
\begin{document}
\cite{NameDate}
\renewcommand{\bibname}{Références} \markboth{Références}{Références}
\printbibliography \addcontentsline{toc}{chapter}{Références}
\end{document}
bib file :
% This file was created with JabRef 2.9.2.
% Encoding: Cp1252
@ARTICLE{NameDate,
author = {LName1, FName1 and LastName2, FirstName2 and LastName3, FirstName3},
title = {title},
journal = {journal},
year = {2013},
volume = {10},
pages = {23--29},
number = {0},
__markedentry = {[myname:6]},
booktitle = {booktitle},
issn = {2212-8271},
keywords = {keywaords},
owner = {my name},
timestamp = {2014.03.05},
url = {an url}
}
Editor warning : Citation 'NameDate' undefiened

biblatex? I don't know ifapalikeis very different fromapa, but there exists abiblatex-apapackage and modifying some details of a bibtex style is much easier with biblatex. – Bernard Mar 18 '14 at 16:59\bibliographystyle{apalike}as I didn't findbiblatex-apanorapaunderstyle,bibstyleandcitestyleoptions inbiblatexdocumentation, I used\usepackage[bibstyle=authoryear, citestyle=author-year]{biblatex}but i'm confused, I get all sorts of errors, my database is created with Jabref, and it doesn't seems to work properly, EDIT : I forgot to change some other code, doing it right now – V.B. Mar 19 '14 at 14:06\usepackage[style=apa]{biblatex}. – Bernard Mar 19 '14 at 14:21apais there you are right, I have just downloaded it, trying it right now. – V.B. Mar 19 '14 at 14:28\addbibresourceinstead of\bibliographyand biblatex requires to write the .bib extension. – Bernard Mar 19 '14 at 15:03citation database_reference unidentifiedbut the bib file hasn't change from my previous working code, and the database_reference (NameDate) is still the same, I can't understand why the citation isn't recognized. (I did compile latex>bibtex>latex) – V.B. Mar 19 '14 at 15:39biber, it is better to encode your .bib file in UTF8 format. This will make it more portable. – Bernard Mar 19 '14 at 18:25