How to create a vertex at the intersection of two edges with tkz-graph?
1
0
I want to draw But I don't know how to create v_6 which is the intersection of Edge(v_3)(v_5) & Edge(v_1)(v_4) and v_7 is the intersection of Edge(v_3)(v_5) & Edge(v_2)(v_4) . Here the code for the pentagram documentclass{standalone} usepackage{tikz,tkz-graph,tkz-berge} %usetikzlibrary{positioning,fit,patterns} begin{document} begin{tikzpicture}[rotate=90] GraphInit[vstyle=Classic] tikzset{VertexStyle/.append style={minimum size=3pt, inner sep=3pt}} Vertices[Math,Lpos=90,unit=2]{circle}{v_1,v_2,v_3,v_4,v_5} Edges(v_1,v_2,v_3,v_4,v_5,v_1) Edges(v_1,v_3,v_5,v_2,v_4,v_1) %WE[Math,Lpos=90,unit=2.75](v_1){v_7} % Brutal %SOEA[Math,Lpos=0,unit=.5](v_7){v_6} end{tikzpicture} end{document}
tikz-pgf graphs intersections tkz-graph
...