我使用 graphviz(在 Windows 下)为我的演示文稿生成图表。其中一个看起来像这样:
digraph minex {
rankdir=LR;
graph [fontname = "adobe-source-sans-fonts"];
node [fontname = "adobe-source-sans-fonts"];
edge [fontname = "courier bold"];
node [shape = circle];
q1 [label=1]
q2 [label=2];
subgraph cluster_0
{
label=<<I>A</I>(<I>r</I><sub>1</sub>)>;
color="black";
q1->q2 [style=invisible dir=none]
}
}
现在,在 GVEdit 的预览窗口(或 .jpg 文件中)中,“A”和“r”显示为斜体字体,但在 .pdf 文件中,它是正常(直立)字体。我必须将字体嵌入 PDF 中吗?如果是,我该怎么做?