我正在尝试使用 graphviz 中的某些伪 HTML 标记来设置我的节点样式:
\documentclass{hitec}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\usepackage{dot2texi}
\begin{document}
\title{Test}
\begin{tikzpicture}
\begin{dot2tex}[dot]
digraph G {
node [shape=plaintext]
"Test"[shape=box,label=<
<TABLE>
<TR>
<TD>
</TD>
</TR>
</TABLE>
>];
}
\end{dot2tex}
\end{tikzpicture}
\end{document}
当通过 LaTeX 或 pdftex 运行它时,我得到如下输出:
无论我的 graphviz 代码是内联的还是外部文件,都会发生这种情况。这是 dot2tex 不支持的吗,还是我必须以某种方式转义标签?