Small layout change

This commit is contained in:
Théophile Bastian 2016-08-20 22:20:30 +02:00
parent 1fedc0b668
commit 01e0b0fba6
1 changed files with 3 additions and 3 deletions

View File

@ -457,9 +457,9 @@ a positive polarity.
The ESP of the previous example would then be
\[
\begin{tikzpicture}
\node (1) [draw=red,ellipse] {A};
\node (3) [draw=green,ellipse,right of=1] {C};
\node (2) [draw=red,ellipse,right of=3] {B};
\node (1) [draw=red, ellipse] {A};
\node (2) [draw=red, ellipse, right of=1] {B};
\node (3) [draw=green, ellipse, below left of=1, below right of=2] {C};
\path[->]
(1) edge (3)
(2) edge (3);