latex-pictures

A collection of TikZ drawings and other images 🖌️

euclidian-plane.tikz (229B)

 1 % This picture represents the cartesian plain
 2 % Copyright Pablo (C) 2021
 3 \begin{tikzpicture}
 4     \draw (0, 0) node[left]{$\mathbb{R}^2$} -- 
 5           (2, 0) -- 
 6           (3, 1) -- 
 7           (1, 1) -- cycle;
 8 \end{tikzpicture}
 9