I get errors for this latex code, please someone can help me
\documentclass{article}
\usepackage{tikz}
\usepackage{tkz-graph}
\usetikzlibrary{graphs,graphs.standard,arrows.meta}
\begin{document}
\newcount\mycount
\begin{tikzpicture}
…
I use tkz-graph to produce the following graph:
The code to produce the graph is as follows:
\documentclass{standalone}
\usepackage{tkz-graph}
\begin{document}
\begin{tikzpicture}[scale=0.6, every node/.style={scale=0.6}]
…
Suppose I have simple graph drawing like the following.
\documentclass[12pt,a4paper]{article}
\usepackage{tkz-graph}
\begin{document}
\begin{figure}
\begin{tikzpicture}
\SetUpEdge[lw = 1.5pt, color = black, labelcolor =…
I'm using these settings for most vertices:
\GraphInit[vstyle=Classic]
\tikzset{VertexStyle/.append style = {minimum size = 5pt, inner sep = 0pt}}
But I'd like to have one or two vertices of my graph be hollow with a thick outer edge. I'm very…
I'm trying to change the colors of two of the edges in the basic graph created by the tkz-graph LaTeX code below to red and the other two to blue and I can't seem to find a way to do it... Any help would be greatly appreciated.…
When I specify \GraphInit, the \Edge command doesn't respect any options. In my case, I'd need to specify the color and line width.
In this example, I wanted to set one of the edges red and the other gray, and wanted thicker lines, but both edges…
Is it possible to hide the vertices while using package tkz-graph? Firstly I want to show just the edges, and then show the whole graph. However, I need the vertices from the beginning in order to draw the edges between them. I tried with…
I am wondering how to draw something like this in Latex. Notice the edges are not straight lines as I see in many Tkz examples. This is an example of attribute grammar where edges indicate the flow of attribute…
I am trying to create figures that illustrate how binary trees may be represented using array indices. Therefore I would like each node in my tree to have two labels: One inside the note, representing its value, and one above the node, representing…
I have this code which generate me a graph. How can I make line 1-3 to be thick?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[top=2in, bottom=1in, left=1in,…
I'm drawing graphs in which I want to label vertices (e.g. x, y, z, w, etc), but also attach the value of a function calculated at each vertex (e.g. 4, -3, 2, 7 corresponding to vertices x, y, z, w etc). I'd like to achieve this by having x inside…
I am trying to demonstrate a geometric way to determine the symmetries of a graph generated using tkz-graph.
I was able to use a not-so-elegant way to get one of the perpendicular bisectors. How may I generate the other ones without figuring out the…
I would like to draw small (although visible) vertices with package tkz-graph. I tried with MinSize, but this is a lower bound on the size, and I am looking for an upper bound. In the following example, it seems that when MinSize is below the…