When building a PDF file with LaTeX the character å gets uncopyable. It only results in
̊a
when copied.
\documentclass{article}
\usepackage[norsk]{babel}
\begin{document}
Try copying this åæø and the å gets strange..
\end{document}
This question is not the same as the one it's marked duplicate of. They do not address the problem with copying ÆØÅ. As you see in Sveinungs answer, he still has problem to copy the characters.
\usepackage[T1]{fontenc}and naturally inputenc:\usepackage[utf8]{inputenc}if your document is utf8 encoded. – Ulrike Fischer Apr 24 '15 at 11:42\usepackage[T1]{fontenc}and\usepackage[utf8]{inputenc}, everything works. However it depends on the editor you're using; it may be set up for a different encoding, perhapslatin9instead ofutf8. – egreg Apr 24 '15 at 11:53