我使用 Tikz 库graphs
绘制了一个图形,即:
\usetikzlibrary{graphs}
这是我的代码
\begin{tikzpicture}
\graph {
"$x_1$" -> {
"$x_2$" -> "$x_3$",
"$x_4$" -> "$x_5,x_8$"
} -> "$x_6,x_7$"
};
\end{tikzpicture}
然而箭体却奇迹般地消失了:
我该如何处理它?
答案1
您可以随时增加节点之间的距离。在当前图表中,这可以通过调整键来实现grow right
。
\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{graphs}
\begin{document}
\foreach \X in {1,1.1,...,2,1.9,1.8,...,1.1}
{\begin{tikzpicture}
\path (-0.3,0.3) rectangle (6.6,-1.4); % only for the animation
\graph[grow right=\X cm]
{
"$x_1$" -> {
"$x_2$" -> "$x_3$",
"$x_4$" -> "${x_5,x_8}$"
} -> "${x_6,x_7}$"
};
\end{tikzpicture}}
\end{document}