I am using LuaLaTeX to typesetting documents with system fonts. Compiling needs much time to update the font database: luaotfload | Updating the font names database:. I think this update is not necessary, because I do not change the fonts every time. If my assumption is correct, is it possible to avoid this update?
A minimal example that shows the problem:
\documentclass[paper = a4]{scrartcl}
\usepackage{blindtext, fontspec}
% Typewriter (\ttfamily)
\setmonofont[BoldFont = VeraMoBd, ItalicFont = VeraMoIt, Scale = MatchLowercase]{VeraMono}
\begin{document}
\blinddocument
\end{document}
I used different fonts set by \setmainfont and \setsansfont, but only the mono-spaced VeraMono hangs on updating the font names database.
The free font Bitstream Vera is available here.
This is LuaTeX, Version beta-0.70.2-2012080612 (TeX Live 2012/W32TeX) (format=lualatex 2013.4.6) 27 MAY 2013 15:11– Dirk May 27 '13 at 13:15mkluatexfontdb -vvon the command line and check if it hangs at some font. – Ulrike Fischer May 27 '13 at 13:27Package: luaotfload 2012/05/28 v1.27 OpenType layout system? The command pass through and counts 977 fonts in the database. Furthermore, it shows me the filename of the database. – Dirk May 27 '13 at 13:32http://en.wikipedia.org/wiki/Bitstream_Vera), if you would like to try it:http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/I have no problems with Arial and some other non-standard fonts, too. So its an issue with VeraMono, I think. But how can I solve this? – Dirk May 27 '13 at 15:39\setmonofont[BoldFont = BitstreamVeraSans-Bold, ItalicFont = BitstreamVeraSans-Oblique]{BitstreamVeraSans}– Ulrike Fischer May 27 '13 at 16:17