Open
Description
When using a path=
in edge specifications, issues occur in styling the arrow head, both using style=
or Direct
. MWE and screenshot below.
Perhaps this can be noted in the documentation.
\documentclass{standalone}
\usepackage{tikz-network}
\begin{document}
\begin{tikzpicture}
\Vertex[x=-2, y=1]{z1}
\Vertex[x=-1, y=0]{z2}
\Edge[style={-{latex}}, path={z1, {1, 1}, z2}](z1)(z2)
\end{tikzpicture}
\begin{tikzpicture}
\Vertex[x=-2, y=1]{z1}
\Vertex[x=-1, y=0]{z2}
\Edge[Direct, path={z1, {1, 1}, z2}](z1)(z2)
\end{tikzpicture}
\end{document}