Bibliografía y citas

Bibliografía y citas

Mi pregunta es sobre el estilo de cita real y cómo representarlo usando \printbibliography.

En mi texto quiero citar como:

(Autor X y Autor Y Año)

Pero en mi bibliografía quiero que se muestre como:

Apellido Autor X, Nombre Autor X (solo inicial X.), Apellido Autor Y, Nombre Autor Y (solo inicial Y.) ........


He intentado un par de cosas pero sin éxito, como:


\begin{filecontents}{\jobname.bib}
@article{wombat2016,
    author   = {Walther Wombat and Klaus Koala},
    title    = {The true meaning of 42},
    journal  = {Journal of modern skepticism},
    date     = {2016},
    keywords = {trusted},
}
@book{lion2010,
    author       = {Laura Lion and  Gabrielle Giraffe and Carl Capybara},
    title        = {The dangers of asking the wrong question},
    publisher    = {publishing house},
    date         = {2010},
    keywords     = {trusted},
}
\end{filecontents}
\documentclass{article}
\usepackage[backend=bibtex,style=authoryear,citetracker=true,mincitenames=2,giveninits=true,maxbibnames=99,dashed=false,isbn=false,url=false,urldate=comp,natbib=true]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}

All we know is limited, apart from knowing the answer we all know. Or do we? Wombat and Koala have discovered some interesting things~\parencite{wombat2016}.

Some people are too nosy. What can happen to them is described by Laura Lion~\cite[9]{lion2010}.

\printbibliography
\end{document}

Respuesta1

\DeclareNameAlias{sortname}{family-given}

Cambia el orden de los nombres en la bibliografía a 'Apellido, Nombre'. Junto con giveninits=trueusted obtiene 'Último, F.'.

\DeclareDelimFormat{finalnamedelim}{\addspace\&\space}
\DeclareDelimFormat[bib,biblist]{finalnamedelim}{\addcomma\space}

Da '&' en citas y ', ' en la bibliografía.

Si desea versalitas para los apellidos, utilice

\renewcommand*{\mkbibnamefamily}{\textsc}

MWE

\documentclass{article}
\usepackage[style=authoryear, mincitenames=2, giveninits=true, maxbibnames=99, dashed=false, uniquename=init]{biblatex}
\addbibresource{biblatex-examples.bib}

\DeclareNameAlias{sortname}{family-given}
\DeclareDelimFormat{finalnamedelim}{\addspace\&\space}
\DeclareDelimFormat[bib,biblist]{finalnamedelim}{\addcomma\space}

\renewcommand*{\mkbibnamefamily}{\textsc}

\begin{document}
\cite[123]{sigfridsson}

\cite[9]{companion}

\printbibliography
\end{document}

ingrese la descripción de la imagen aquí

información relacionada