8

I love XeLaTeX for things like

$a≠b$ ⇔ $ a⊧a↑Ω$

All days before I used DejaVu fonts and Asana-Math for unicode-math. But today I have to get visual compability with LaTeX. So I installed Computer Modern Unicode, and all close to good, but thinks like above do not displayed in non-math mode.

Yes, I know, Computer Modern is no longer modern at all. So my question -- is it any other font, that looks close and retains power of unicode?

EDIT: Probably, I was not clean enough. I CAN use unicode arrows in math-mode. I can do it in normal mode with DejaVu, but not with Modern Computer.

KAction
  • 703

1 Answers1

11

Use Latin Modern Math as math font.

Example:

\documentclass{article}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\begin{document}

$a≠b ⇔ a⊨a↑Ω$

\end{document}
Leo Liu
  • 77,365
  • Cleaned my question. Latin modern is nice, but unrelated to my problem. – KAction Jul 31 '12 at 08:00
  • 4
    @illusionoflife Latin Modern is Computer Modern, how is that not related to your question? – خالد حسني Jul 31 '12 at 08:20
  • 1
    Latin modern is more or less a hand-vectorised computer modern, see e.g. http://tex.stackexchange.com/q/1390 or http://tex.stackexchange.com/q/59702 – matth Jul 31 '12 at 08:21
  • Where do you get "Latin Modern" and "Latin Modern Math"? Do you have to install it as normal system font? I have TeXLive 2013 and it is not found there. – alfC Apr 17 '14 at 18:30
  • @alfC: They're installed in TeX Live. If you use Linux, maybe you can follow the instructions in document of texlive to configure your fontconfig library to find them. – Leo Liu Apr 20 '14 at 02:53