xlabels for nodes overlap with edges in dot
问题 I try to use dot for drawing a graph, and I have the following problem The label for node b overlaps with the edge from a to b . Is there a way to move this label somehow to avoid this? This is the code I use to generate the image (using dot ) digraph A { rankdir=LR; center=true; margin=0.3; nodesep=1.5; ranksep=0.5; node [shape=point, height=".2", width=".2"]; a [xlabel="a"]; b [xlabel="b"]; c [xlabel="c"]; a -> b -> c; a -> c; } This happens quite often and it's annoying (same here, but