AquíSe afirma que usarlo biber
como backend es suficiente para "abreviar" correctamente con un punto los nombres de los autores dados como un solo carácter, sin embargo, desde mi MWE no parece que esta sea la solución. ¿Estoy pasando por alto algo? Mi base de datos .bib es producida por Mendeley y hay demasiadas entradas de "nombre de una letra" para hacerlo manualmente.
(Estoy usando una plantilla de tesis descargada deaquí.)
\documentclass[11pt, oneside]{Thesis}
\usepackage[backend=biber,doi=false,url=false]{biblatex}
\addbibresource{database.bib}
\hypersetup{urlcolor=blue, colorlinks=true} % Colors hyperlinks in blue - change to black if annoying
\begin{filecontents*}{database.bib}
@article{Fujisawa:2015nla,
author = "Fujisawa, K",
title = "{Magnetised stars with differential rotation and a differential toroidal field}",
doi = "10.1093/mnras/stv905",
year = "2015",
eprint = "1504.05961",
archivePrefix = "arXiv",
primaryClass = "astro-ph.HE"
}
\end{filecontents*}
\begin{document}
This reference has mixed fonts~\cite{Fujisawa:2015nla}.
\printbibliography
\end{document}
Respuesta1
biblatex
no abreviará el primer y segundo nombre a menos que agregue el
firstinits=true
opción.
\begin{filecontents*}{\jobname.bib}
@article{Fujisawa:2015nla,
author = "Fujisawa, K",
title = "{Magnetised stars with differential rotation and a differential toroidal field}",
doi = "10.1093/mnras/stv905",
year = "2015",
eprint = "1504.05961",
archivePrefix = "arXiv",
primaryClass = "astro-ph.HE"
}
\end{filecontents*}
\documentclass[11pt, oneside]{report}
\usepackage[backend=biber,doi=false,url=false,firstinits=true]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
This reference has mixed fonts~\cite{Fujisawa:2015nla}.
\printbibliography
\end{document}