I'd like to export text from org-mode to LaTeX that contains accented characters. I am using curly brackets, following the guide from the top answer in this question.
# This:
Foo B{\"u}chi automaton bar.
# Exports to:
B\{$\backslash$"u\}chi automaton.
# Whilst this:
#+BEGIN_LATEX
Foo B{\"u}chi automaton bar.
#+END_LATEX
# Exports to:
B{\"u}chi automaton.
The question is either:
- How do I esacape the
{\"}to avoid the conversion to{$\backslash$"u\}? - How do I use LaTeX inline, as `$x$ allows me to use math inline ?