XeTeX ⇒ ASCII input (æ, ö)
ASCII input (æ, ö)
I find this unwieldy. Is there some way around this, so that I can type the ASCII directly?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
ASCII input (æ, ö)
Code: Select all
\documentclass{minimal}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
\begin{document}
æ ö
\end{document}
Re: ASCII input (æ, ö)
I think my problem may have been due to specifically marking the character encoding UTF8x in the preamble, something I have since taken out.
Thanks!
ASCII input (æ, ö)
ASCII includes no more than 128 characters.jpeyton wrote:The ASCII codes are 230 (æ) and 246 (ö).
That's correct, you cannot use the inputenc package in combination with XeTeX.jpeyton wrote:I think my problem may have been due to specifically marking the character encoding UTF8x in the preamble, something I have since taken out.