fuente electrónica biblatex

fuente electrónica biblatex

Esta fuente electrónica

\documentclass{article} 

\usepackage[backend = biber, style=authoryear, uniquename=false]{biblatex} 
\addbibresource{ref.bib} 

\usepackage{filecontents} 
\begin{filecontents}{ref.bib} 

@Electronic{Friston2,
  author    = {K. J. Friston},
  year      = {2011}
  url       = {http://www.fil.ion.ucl.ac.uk/spm/course/video/},
  timestamp = {2017.04.24}
  }

\end{filecontents} 

\begin{document}

\textcite{Friston2}

\printbibliography

\end{document}

aparece así en la bibliografía: KJ Friston (2011). Introducción a la GDS. http://... pero debería ser como: Friston, KJ (2011). Introducción a la GDS. http://...

Y cuando cito un mensaje de texto, es así: KJ Friston, (2011) en lugar de: Friston (2011)

¿Qué estoy haciendo mal?

Respuesta1

El formato adecuado para los nombres en el .bibarchivo es:

LastName, FirstName and LastName, I. I.

Para un solo nombre puedes salirte con la tuya, FirstName LastNamepero es mejor no hacerlo.

Este es su ejemplo (agregué una coma después del año en el .bibarchivo).

\documentclass{article} 

\usepackage[style=authoryear, uniquename=false]{biblatex} 
\addbibresource{\jobname.bib} 

\usepackage{filecontents} 
\begin{filecontents}{\jobname.bib} 

@Electronic{Friston2,
  author    = {Friston, K. J. },
  year      = {2011},
  url       = {http://www.fil.ion.ucl.ac.uk/spm/course/video/},
  timestamp = {2017.04.24}
  }
\end{filecontents} 

\begin{document}

\textcite{Friston2}

\printbibliography

\end{document}

salida de código

información relacionada