我正在尝试编译 Ti 第 390 页中的示例钾Z 手册。
\RequirePackage{luatex85}
\documentclass[border=10pt,multi,tikz]{standalone}
\usetikzlibrary{graphdrawing,graphs}
\begin{document}
\begin{tikzpicture}
\graph {
% The nodes:
a, b, c, d;
% The edges:
{[hyper] a,b,c};
{[hyper] b,c,d};
{[hyper] a,c};
{[hyper] d}
};
\end{tikzpicture}
\end{document}
但是,我收到以下错误。
/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceCore.lua:100: no graph drawing
scope open
stack traceback:
[C]: in function 'assert'
.../pgf/graphdrawing/lua/pgf/gd/interface/InterfaceCore.lua:100: in function '
topScope'
...graphdrawing/lua/pgf/gd/interface/InterfaceToDisplay.lua:590: in function '
pushOption'
[\directlua]:1: in main chunk.
\pgf@gd@handle@parameter ...riggerrequest }') end}
l.136 }
;
?
这是因为
目前,超边缘没有默认渲染器。(389)
如果是,那么它打算如何使用?它只是用于附加渲染器的占位符吗?