Swedish characters in latex
Hi!
I want to write Swedish characters, (å,ä,ö) in my latex document. What should I do?
Thanks!
Hi again!
Maybe I was not precise; I know the latex commands, which must write in the text. But I have not the packages installed. So the question is how to install packages for Swedish language.
Try 'texlive-lang-european'. Both Swedish and Finnish use the same characters (umlauts å, ä, ö) and usepackages.
You want this line in the preamble:
\usepackage[utf8]{inputenc}
Then, write normally. For instance write ä and not \" a.
This
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[swedish]{babel}
\begin{document}
Testar åäö. ÅÄÖ.
\end{document}
produces this.
Attachment | Size |
---|---|
test.pdf | 5.41 KB |
Thanks everybody :)
Now it works.