X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=intro%2Ftaskvalue.tex;h=05a3b50251bfc22351a22889f2549d4bdd0c15c6;hb=40c364b9de5d27b8afedcfd83d76499acc9e31af;hp=e35db72e77fccb621f249a191aacc29a16b9d80d;hpb=20e228ca78d3de0bf35b4bcac769b119754d70f6;p=phd-thesis.git diff --git a/intro/taskvalue.tex b/intro/taskvalue.tex index e35db72..05a3b50 100644 --- a/intro/taskvalue.tex +++ b/intro/taskvalue.tex @@ -1,14 +1,14 @@ \documentclass[tikz]{standalone} \usetikzlibrary{arrows.meta,shapes.symbols,matrix,positioning} \begin{document} - \begin{tikzpicture}[node distance=7em] - \node (1) {$No Value$}; - \node (2) [right of=1] {$Unstable$}; - \node (3) [right of=2] {$Stable$}; + \begin{tikzpicture}[node distance=7em,nodes={draw,minimum width=5em}] + \node (1) {no value}; + \node (2) [right of=1] {unstable}; + \node (3) [right of=2] {stable}; \draw [->] (1) -- (2); \draw [->] (2) -- (1); \draw [->] (2) -- (3); - \draw [->] (1) to [out=20,in=160] (3); + \draw [->] (1.north east) to [out=25,in=155] (3.north west); \end{tikzpicture} \end{document}