Sto cercando di usare TimesNewRoman.ttf come font per i file * .eps generati da Gnuplot. Sto usando OS X 10.9.5 su un Macbook Pro 2010. Ecco il mio script gnuplot.
set terminal postscript eps enhanced size 5,5 font 'TimesNewRoman.ttf,20'
set output "./test.eps"
plot sin(x)
Quando apro questo file con Anteprima, viene visualizzato l'errore:
PostScript Conversion Warning
Converting the PostScript file “test.eps” produced the following warnings: · TimesNewRoman.ttf not found, using Courier.
TimesNewRoman.ttf è una copia esatta di Times New Roman.ttf. Gnuplot ha problemi nel cercare di trovare file con spazi nel nome del file. Così ho copiato / Library / Fonts / Times New Roman.ttf in /Library/Fonts/TimesNewRoman.ttf e ~ / Library / Fonts / TimesNewRoman.ttf. Credo che questo trucco abbia funzionato quando usavo OS X 10.6.8, ma sembra non funzionare in Mavericks.
Come posso risolvere questo problema?