Biblatex電子ソース

Biblatex電子ソース

この電子ソース

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

参考文献には次のように記載されています: KJ Friston (2011). Introduction to SPM. http://... ただし、次のように記載する必要があります: Friston, KJ (2011). Introduction to SPM. http://...

そして、私がテキスト引用すると、次のようになります: KJ Friston、(2011) 代わりに: Friston (2011)

何が間違っているのでしょうか?

答え1

ファイル内の名前の適切な形式は次のとおり.bibです。

LastName, FirstName and LastName, I. I.

単一の名前であれば問題ありませんFirstName LastNameが、そうしない方がよいでしょう。

これが例です (ファイル内の年の後にカンマを追加しました.bib)。

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

コードの出力

関連情報