latex-pictures

A collection of TikZ drawings and other images 🖌️

standard-sets-venn.tikz (607B)

 1 % This diagram represents the relationship between standard number sets
 2 % Copyright Pablo (C) 2021
 3 \begin{tikzpicture}
 4   % The complex numbers
 5   \draw (-3,-2.5) rectangle (3,2.5) 
 6         (3,-2.5) node[right]{$\mathbb{C}$};
 7 
 8   % The real numbers
 9   \draw (0,0) circle (2) 
10         (2, 0) node[left]{$\mathbb{R}$};
11 
12   % The rational numbers
13   \draw (-0.5,0) circle (1.5) 
14         (1,0) node[left]{$\mathbb{Q}$};
15 
16   % The integers
17   \draw (-1,0) circle (1) 
18         (0,0) node[left]{$\mathbb{Z}$};
19 
20   % The natural numbers
21   \draw (-1.5,0) circle (0.5) 
22         (-1.5,0) node{$\mathbb{N}$};
23 \end{tikzpicture}
24