Fonte eletrônica Biblatex

Fonte eletrônica Biblatex

Esta fonte eletrô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 assim na bibliografia: KJ Friston (2011). Introdução ao SPM. http://... mas deveria ser como: Friston, KJ (2011). Introdução ao SPM. http://...

E quando eu cito, é assim: KJ Friston, (2011) em vez de: Friston (2011)

O que estou fazendo de errado?

Responder1

O formato adequado para nomes no .bibarquivo é:

LastName, FirstName and LastName, I. I.

Para um único nome você pode se safar, FirstName LastNamemas é melhor não fazê-lo.

Aqui está o seu exemplo (adicionei uma vírgula após o ano no .bibarquivo).

\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}

saída de código

informação relacionada