latex-pictures

A collection of TikZ drawings and other images 🖌️

complex-surreal-venn.tikz (408B)

 1 % This picture represents the relationshipt between the real, complex and
 2 % surreal numbers
 3 % Copyright Pablo (C) 2021
 4 \begin{tikzpicture}
 5   % The reals
 6   \draw (0.75, 0) node{$\mathbb{R}$}
 7         (   0, 0) circle (1.5);
 8 
 9   % The complex numbers
10   \draw (-1.5, 0) node[left]{$\mathbb{C}$}
11         ( 1.5, 0) circle (1.5);
12 
13   % The surreal numbers
14   \draw (3,0) node[right]{$\mathbf{No}$};
15 \end{tikzpicture}
16