I've got a large document which I wrote some time ago. It contains a bibliography for which I use biblatex:
\usepackage[style=authoryear-comp, maxnames=1, doi=false, url=false, backend=bibtex8]{biblatex}
For the encoding within the LaTeX-document, I use:
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
Last time I was working with the document (around a month ago), the encoding of bibliography items was not a problem and special characters were displayed in a correct way, e.g. the author name "Brydøy". However, now, it's only displayed as "Brydøy". If I simply put "Brydøy" into the normal text, it is displayed properly, but within the citations (in text citation as well as the bibliography) there seems to be something wrong with the encoding. I would appreciate help on how to fix this issue very much.
backend=biberinstead ofbibtex8. Do you know what encoding your bib file is in? – Alan Munn Apr 22 '12 at 14:57backend=biberdoesn't help either. I export the references into the bib-file from EndNote, so I guess it should be in Unicode. – AnjaM Apr 22 '12 at 17:27bibencodingexplicitly as abiblatexoption. See section 2.4.3.4 of thebiblatexmanual. Also, if you make a small UTF-8 encoded document, does the.bibfile work correctly (withbackend=biberand\usepackage[utf8]{inputenc})? – Alan Munn Apr 22 '12 at 17:33bibencoding=utf8solved the problem (I didn't change\usepackage[ansinew]inputenc, though). Thanks a lot! If you'd put your comment as an answer, I will set it as accepted. – AnjaM Apr 22 '12 at 17:45