0

I have the following Bibtex source:

  @Book{sarndal_estimation_2005,
  Title                    = {Estimation in {Surveys} with {Nonresponse}},
  Author                   = {S{\"a}rndal, Carl-Erik and Lundstr{\"o}m, Sixten},
  Publisher                = {Wiley},
  Year                     = {2005},

  Address                  = {Chichester}

I use the following Latex preamble

\usepackage[backend=biber, style=apa, sorting=nyt, sortcites=true]{biblatex}

However the umlaute in the author names are simply omitted despite the correct representation in bibtex code. Do I need to enter them differently for biblatex?

enter image description here

tomka
  • 305

1 Answers1

2

The following example (with example.bib being your provided bib example) should do the trick:

\documentclass{article}
\usepackage[backend=biber, style=apa, sorting=nyt, sortcites=true]{biblatex}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\addbibresource{example.bib}

\begin{document}
\cite{sarndal_estimation_2005}
\end{document}

When using T1 as input encoding, lmodern gives you access to the Latin Modern font family, which prevents the "strange look", cf. also: https://tex.stackexchange.com/a/44701/99345

sdm4n
  • 197