How do I use TikZ graphdrawing package with KTikZ+LuaLaTeX?
Putting the following code:
\usetikzlibrary{graphs}
\tikz [rounded corners]
\graph [layered layout, sibling distance=8mm, level distance=8mm]
{
a -> {
b,
c -> { d, e }
} ->
f ->
a
};
gives this error:
[LaTeX] Line 5: Package pgfkeys Error: I do not know the key '/tikz/graphs/layered layout' and I am going to ignore it. Perhaps you misspelled it.
