tikz-network
tikz-network copied to clipboard
A tool to visualize complex networks in LaTeX
Here is my code: ```\documentclass{article} \usepackage{tikz-network} \usepackage{tikz-qtree} \begin{document} \begin{tikzpicture}[sibling distance=0.6em] \Tree [.A [.B ] \edge[draw=none]; {} ] \Vertex[label=A]{A} \Vertex[label=B,x=1]{B} \Edge[label=6](A)(B) \end{tikzpicture} \end{document} ``` A error occured when I compiled it...
Is it possible to create a color bar, that tells the range of line width values? Similarly, it would be nice to have an option that outputs colorbar based on...
Giving tikz-network ( c21bb81 ) a try, all the examples in the manual to be plagued with this bug I suspect some default code useful for label alignment ends up...
Greetings :) I got the following graph: ``` \documentclass{standalone} \usepackage{tikz} \usepackage{tikz-network} \begin{document} \begin{tikzpicture} \clip (0,0) rectangle (30.0,30.0); \Vertex[x=29.000,y=15.000,size=2.0,color={0,77,153},opacity=0.7,label=A0,fontcolor={230,230,230},fontscale=2.286,RGB]{A0} \Vertex[x=22.000,y=27.124,size=2.0,color={0,77,153},opacity=0.7,label=A4,fontcolor={230,230,230},fontscale=2.286,RGB]{A4} \Vertex[x=8.000,y=27.124,size=2.0,color={0,77,153},opacity=0.7,label=A3,fontcolor={230,230,230},fontscale=2.286,RGB]{A3} \Vertex[x=1.000,y=15.000,size=2.0,color={0,77,153},opacity=0.7,label=A1,fontcolor={230,230,230},fontscale=2.286,RGB]{A1} \Vertex[x=8.000,y=2.876,size=2.0,color={0,77,153},opacity=0.7,label=A5,fontcolor={230,230,230},fontscale=2.286,RGB]{A5} \Vertex[x=22.000,y=2.876,size=2.0,color={0,77,153},opacity=0.7,label=A2,fontcolor={230,230,230},fontscale=2.286,RGB]{A2} \Edge[,lw=3.6871,color=purple,opacity=0.4687143150544264,bend=-8.531,label=11968.5/32460.0: 0.37,Direct](A0)(A4) \Edge[,lw=3.2066,color=purple,opacity=0.4206628671185051,bend=-8.531,label=10408.7/32460.0: 0.32,Direct](A0)(A3) \Edge[,lw=6.0346,color=purple,opacity=0.7034586157321837,bend=-8.531,label=19588.3/32460.0: 0.60,Direct](A0)(A1) \Edge[,lw=1.2568,color=purple,opacity=0.22568186485931396,bend=-8.531,label=4079.6/32460.0:...
When using several \Vertices commands in the same document wrong input files are used. MWE: ``` \documentclass{article} \usepackage{tikz-network} \begin{document} \begin{tikzpicture} \Vertices{cci14.txt} \end{tikzpicture} \begin{tikzpicture} \Vertices{cci23.txt} \end{tikzpicture} \begin{tikzpicture} \Vertices{cci14.txt} \end{tikzpicture} \begin{tikzpicture} \Vertices{cci23.txt}...
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...
Not a bug but rather the wish for an additional feature. I'd like to be able to insert arbitrary text between `\begin{tikzpicture}` and the first `\Vertex`-Statement. In particular this would...
Suggestion: I have no idea what the cause is and also what the solution would be but I ask that when using multilayer = 3d I the text provided by...
This is not really a bug, but a request (and suggestion). I have been using ``` \SetCoordinates[options] \begin {scope} [multilayer = 3d] ... \end{scope} ``` or ``` ... \Plane[options, style={rotate=angle}]...
Currently, the RGB option has to be enabled in the latex document by using: ```latex \Edges[RGB]{edges.csv} ``` The library should be able to detect the RGB values directly from the...