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

Gnuplot: how to use type-1 font in PDF

Gnuplot 4.6.5.

默认情况下,Gnuplot 使用 True Type 字体生成 pdf 文件,更具体地说是 True Type (CID) 字体。

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

这是一个测试脚本:

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

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

使用终端的 font 选项,您必须 select 一种在您的系统上作为 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)

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