2

I am calling Graphviz from Java application using the Graphviz.java API and save the output graph to PDF file. I need to label some nodes with math subscripts and accents (for example $a_1$ or $\hat{a}$ in latex). I can survive with subscripts only.

is there anyway to do it? is this because of the API i'm using or I am missing something here.

I have tried b [label=<x<SUB>1</SUB>>]; but it doesn't work (though symbols like a [ label=<&#945;>]; work and show up in the output file).

4

1 に答える 1

4

彼らのドキュメントによると、

注: 太字、斜体、下線、下付き文字、上付き文字 ( <B><I><U><SUB>;および<SUP>) のフォント マークアップは、2011 年 10 月 14 日以降のバージョンでのみ使用でき、現在は cairo および svg レンダラーを介してのみ使用できます。また、横罫線と縦罫線 (<HR>および<VR>) は、2011 年 7 月 8 日以降のバージョンでのみ使用できます。

これらのバージョンのいずれかを使用していますか?

于 2013-07-16T06:56:13.033 に答える