suvayu ali <fatkasuvayu+li...@gmail.com> writes: > On Sun, Aug 7, 2011 at 6:50 PM, suvayu ali <fatkasuvayu+li...@gmail.com> > wrote: >>> BTW, this only works if you use a font that provides all the characters >>> you need (and looks nice enough for your taste). >> >> I don't usually customise my fonts and go with the default latex >> fonts. Do you have any suggestions what fonts that would be >> appropriate here? I tried using XITS, but that didn't help. > > I should clarify, when I say didn't work I mean xelatex couldn't find > the fonts although I have them installed.
Not sure. XeTeX uses the fonts you have installed on your system, not those for TeX. Everything in M-: (font-family-list) should work. Maybe one of the DejaVu fonts? Generally, though, universal fonts aren't the best choice. Here is what I do. Create a custom link style for export with XeLaTeX: (org-add-link-type "uc" 'ignore 'org-unicode-export) (defun org-unicode-export (path desc format) "Export unicode characters." (cond ((eql format 'html) (format "%s" desc)) ((eql format 'latex) (format "{\\fontspec[Scale=MatchLowercase]{%s}%s}" path desc)) (t desc))) And write [[uc:Code2000][⫳]] to use Code2000 as a font. I use it mostly for greek words, e.g. [[uc:Alexander][φύσις κρύπτεσθαι φιλεῖ]] But if you mostly have single characters it might be too much of a hassle. -- Florian Beck