I'm using XeLaTeX to write a thesis using the Arno Pro font. I've noticed that -- isn't automatically translated to an en-dash when I use that font. However when I type \textendash, I *do* get an en-dash. Why is this happening? And can I fix it?
Kind regards,
Vic
Minimal (ok ok quasi-minimal) working example:
Code: Select all
\documentclass[b5paper,10pt,twoside,openright]{memoir}
\usepackage{xltxtra}
\usepackage{fixltx2e}
\setromanfont{Arno Pro}
\begin{document}
-
\\
--
\\
---
\\
\textendash
\\
\textemdash
\end{document}