dot2texi:使用带有集群的乳胶标签(texlbl)

dot2texi:使用带有集群的乳胶标签(texlbl)

我正在使用该dot2texi包将点图包含到我的 tex 文件中。有了节点,我可以用来texlbl="$n_1$"创建标签 n 1。我还想在集群上添加 tex 标签:

\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{shapes}
\usepackage{dot2texi}

\begin{document}

\begin{frame}[fragile]
\begin{figure}[htb]
  \centering
  \begin{dot2tex}[dot,tikz,options=-s]
    digraph G {
      n1 [texlbl="$n_1$"];
      subgraph cluster_1 {
        texlbl = "$c_1$";
        n2 [texlbl = "$n_2$"];
      }
    }
  \end{dot2tex}
\end{figure}
\end{frame}

\end{document}

但是,没有显示任何集群标签:

使用 texlbl 设置簇标签

如果我替换texlbl = "$c_1$"label = "$c_1$",则标签将$c_1$变成 c 1

带标签的聚类集

有没有办法使用texlblas 集群标签?或者我还能如何在集群标签中使用数学环境?

相关内容