[Tex/LaTex] Capital Ø (Scandinavian letter) in Bibtex

bibtexcharactersscandinavian-letters

I know that I can preserve capital letters in Bibtex with curly braces, and that I can type Scandinavian letters like æøå as \ae{} \o{} \aa{}. But what do I do to force the capital letters ÆØÅ? Following a suggestion I found for German umlaut, I tried {\{O}}, but it still comes out as a lowercase ø.

Bibtex file:

@misc{o2012,
    title = "This is the word \O{}re"}

Latex:

\documentclass{article}
\begin{document}
\nocite{o2012}
\bibliographystyle{plain}
\bibliography{test}
\end{document}

Best Answer

try

@misc{o2012,
    title = {This is the word {{\O}}re},
    ...
Related Question