Move to subdirectory

This commit is contained in:
Théophile Bastian 2016-08-22 10:50:23 +02:00
parent 9c452f5f22
commit fdb5d06dbf
15 changed files with 8 additions and 6 deletions

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -11,6 +11,8 @@
\usepackage{caption}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{todo}
% Custom packages
\usepackage{leftrule_theorems}
\usepackage{my_listings}
@ -358,9 +360,9 @@ corresponds to the game tree
\[
\begin{tikzpicture}
\node (1) [ellipse] {A} ;
\node (2) [below left of=1, ellipse] {B};
\node (3) [below right of=1, ellipse] {C};
\node (1) at (0.5,1.2) {A} ;
\node (2) at (0,0) {B};
\node (3) at (1,0) {C};
\path [->]
(1) edge (2)
@ -457,9 +459,9 @@ a positive polarity.
The ESP of the previous example would then be
\[
\begin{tikzpicture}
\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};
\node (1) at (0,1.6) [draw=red, ellipse] {A};
\node (2) at (1,1.6) [draw=red, ellipse] {B};
\node (3) at (0.6,0) [draw=green, ellipse] {C};
\path[->]
(1) edge (3)
(2) edge (3);

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB