Gnuplot:如何在PDF中使用type-1字体

时间:2015-02-25 09:34:30

标签: pdf fonts gnuplot

Gnuplot 4.6.5。

Gnuplot默认生成带有True Type字体的pdf文件,更具体地说是True Type(CID)字体。

我在使用Ghostscript处理生成的PDF文件时遇到问题,因为它有CID字体。如何在PDF中使用类型1字体并获取CID字体?

这是一个测试脚本:

set term pdfcairo
set output "gpdf.pdf"
#set xlabel "α"; set ylabel "β"
set xlabel "x"; set ylabel "y"
plot sin(x)

当我打开PDF并且其文档属性显示时:

enter image description here

1 个答案:

答案 0 :(得分:1)

使用终端的font选项,您必须选择系统上可用作Type1的字体(对于libpango可以访问)。在Windows上,我可以使用“Univers LT 55”,这是我目前安装的唯一Type1字体:

set term pdfcairo font "Univers LT 55"
set output "gpdf.pdf"
set xlabel "x"; set ylabel "y"
plot sin(x)

enter image description here

但是当你使用utf-8编码时,你很可能会遇到问题。你使用ghostscript和CID字体的实际问题是什么?