latex-pictures

A collection of TikZ drawings and other images 🖌️

projective-system.tikz (537B)

 1 % This picture represents the behaviour of the morphisms of a projective system
 2 % (X_i, \phi_{i, j}
 3 % Copyright Pablo (C) 2021
 4 \begin{tikzpicture}[ampersand replacement=\&]
 5   % The objects
 6   \matrix(m)[matrix of math nodes,row sep=2em,column sep=2em,minimum width=2em]
 7   {     \& X_j \& \\
 8     X_i \&     \& X_k \\};
 9 
10   % The arrows
11   \draw[->] (m-2-3) -- node[below]{$\phi_{i k}$} (m-2-1);
12   \draw[->] (m-1-2) -- node[above left]{$\phi_{i j}$} (m-2-1);
13   \draw[->] (m-2-3) -- node[above right]{$\phi_{j k}$} (m-1-2);
14 \end{tikzpicture}
15