I'm trying to write an article in English with some Norwegian names in it, both in the article itself as well as in the bibliography (bibtex).
Strangely, I don't get the display of the Norwegian letters right.
When I use:
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
%\usepackage[norsk]{babel}
I get the letters right in the text but not in bibliography.
When I use
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
%\usepackage[norsk]{babel}
the letters are correctly dispayed in the bibliography but not in article text. The use of \usepackage[norsk]{babel} does not seem to help in either case.
I can remember having used only
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
once which had worked fine so I really cannot explain these strange results...
I'm using windows 7, MiKTeX 2.9 and TeXnic Center 2.0 beta.
Any suggestions what might be wrong or what I should check?
\usepackage[latin1]{inputenc}did you also re-encode your document to latin1 from utf-8? But anyway better probably is to use and declare utf-8 but use traditional ascii markup in the bib file so{\"o}etc rather than using the letter directly. – David Carlisle Dec 19 '14 at 10:23bibtex8instead ofbibtex.bibtex8provides support for unicode characters. – Guido Dec 19 '14 at 10:54biberunderstandsutf8, so you can type norwegian letters directly (askJabRefto save the .bib file in utf8 encoding). – Bernard Dec 19 '14 at 12:52bibtex8can handle 8-bit (1 byte) encoded characters (which suffices for most languages of European origin), but not "real" Unicode-based encodings (such as utf8, which encodes characters using up to 4 bytes of data). There is a program calledbibtexu, but I've never used it and don't know how stable and reliable it is. – Mico Dec 20 '14 at 07:28