latex-pictures

A collection of TikZ drawings and other images 🖌️

Commit
b85c75557334415784b674ae99ed846039f400ab
Parent
3f10095c65e36a0ca75f78f266144196d640b2dc
Author
Pablo <pablo-escobar@riseup.net>
Date

Minor correction in the K4 drawing

The color of the vertices should be the same as the color of the edges, not necessarily black

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified k4.tikz 2 1 1
diff --git a/k4.tikz b/k4.tikz
@@ -7,7 +7,7 @@
   \coordinate (c) at (2,1);
   \coordinate (d) at (2,3);
   \foreach \node in {a,b,c,d}
-  \draw[fill=black] (\node) circle (2pt);
+  \filldraw (\node) circle (2pt);
 
   % The edges
   \draw (a) -- (b)