I have a node which represents a multiline label in math mode. However, I failed to include the newline symbol \n
into the node label. Here is my try
\begin{dot2tex}[neato,scale=.5,options=-t math]
digraph G
{
c[shape=none,label="x_1",pos="1,.25!"];
d[label="D",pos=".5,-1.6!"];
}
\end{dot2tex}
How can I add newline for the node c
?