\begin{center}
\begin{tikzpicture}
\node[draw] (B) at (5,0) {Bogotá};
\node[draw] (M) at (0,1) {Medellı́n};
\node[draw] (C) at (2,4) {Cartagena};
%
\draw[->] (B) -| (M);
% primero un segmento horizontal, despues uno vertical
%
\draw[->] (M) |- (C); % primero vertical, despues horizontal
\draw[->] (C) -| (B);
\end{tikzpicture}
\end{center}
Cartagena
Medellı́n
Bogotá
\begin{center}
\begin{tikzpicture}
\node[draw] (B) at (5,0) {Bogotá};
\node[draw] (M) at (0,1) {Medellı́n};
\node[draw] (C) at (2,4) {Cartagena};
%
\draw[->,>=latex] (B) to[bend right] (M);
\draw[->, dashed] (M) to[bend left] (C);
\draw[->] (C) to[bend left] (B);
\end{tikzpicture}
\end{center}
16
Cartagena
Medellı́n
Bogotá
\begin{center}
\begin{tikzpicture}[scale=0.8]
\node[draw,circle] (1) at (0,5) {1};
\node[draw,circle] (2) at (3,4) {2};
\node[draw,circle] (3) at (6,5) {3};
\node[draw,circle] (4) at (6,0) {4};
\node[draw,circle] (5) at (3,1) {5};
\node[draw,circle] (6) at (0,0) {6};
%
\draw[->] (1) -- (2);
\draw[->] (1) to (3);
\draw[->] (1) to[bend right] (5);
\draw[->] (2) -- (3);
\draw[->] (2) -- (4);
\draw[->] (2) to[bend right] (5);
\draw[->] (2) -- (6);
\draw[->] (3) to[bend right] (1);
\draw[->] (3) -- (6);
\draw[->] (4) -- (5);
\draw[->] (5) -- (2);
\draw[->] (6) -- (5);
\end{tikzpicture}
\end{center}
17
1 3
6 4
18
\begin{center}
\begin{tikzpicture}
\node[draw] (SEL) at (0,0) {Sistema de ecuaciones lineales};
\node[draw, text width = 4cm] (SEL2) at (5,0) {Sistema de ecuaciones lineales};
\node[draw, text width = 3cm, text centered] (SEL3) at (10,0) {Sistema de ecuaciones lineales};
% text justified
\node[draw] (LQS) at (5,-4) {Lo que sigue};
\draw[->] (SEL) -- (LQS) node[midway] {Carreta 1};
\draw[->] (SEL2) -- (LQS)node[near start] {Segunda carreta};
% very near start near end very near end
\draw[->] (SEL3) -- (LQS) node[midway] {Todavı́a más carreta};
\end{tikzpicture}
\end{center}
Sistema de ecuaciones Sistema de
Sistema de ecuaciones lineales
lineales ecuaciones lineales
Segunda carreta
Carreta 1 Todavı́a más carreta
Lo que sigue
19