I'm trying compiling this latex template example (CHI Extended Abstracts template) under linux (XeTeX, Version 3.1415926-2.2-0.9997.4 (TeX Live 2010/Arch Linux) using xelatex.
This is the output I'm getting: http://sprunge.us/YaXi
It seems that it's having troubles finding Helvetica, but helvetica is installed: fc-list http://sprunge.us/GChE
Can you guys help?
UPDATE: Trying to simplify the issue, I've been suggested on #latex to try with a simpler example:
\documentclass{scrbook}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{fontspec}
\usepackage{xunicode}
\defaultfontfeatures{Mapping=tex-text}
\setmainfont{Helvetica}
\begin{document}
\Blinddocument
\end{document}
Which fails just as the template above. See http://sprunge.us/GJdG
fc-list -v Helvetica | grep fontformat). At least here, Helvetica is in PCF, a bitmap font format, which can't be used with Xe(La)TeX, even if listed byfc-list. On how to filterfc-list, and on what may be the same issue, see http://tex.stackexchange.com/questions/25786/terminus-with-fontspec-in-xetex – njsg Jun 17 '12 at 21:52