Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.01 KB | None | 0 0
  1. \begin{tikzpicture}[>=stealth,minimum size = 0.3cm,scale = 0.8]
  2. [level distance=40mm]
  3. \tikzstyle{level 1}=[sibling distance=5cm]
  4. \node{$x: M \sqcap \forall b.K \sqcap (\neg M \sqcup \exists b.(\neg H \sqcap \neg K))  \checkmark$ }
  5. child{node(nodem){$x: M$}
  6. child{node{$x: \forall b.K$}
  7.  child{node{$x: \neg M \sqcup \exists b. \neg H \sqcap \neg K \checkmark$}
  8.   child{
  9.   node(nodenotm){$x: \neg M$}
  10.   child [level distance=.5cm]{
  11.   node{$\Box$} edge from parent [draw=none]}}
  12.   child{node{$x: \exists b. \neg H \sqcap \neg K \checkmark$}
  13.    child{node{$y:\neg H \sqcap \neg K \checkmark$}
  14.     child{node{$(x,y) \in b$}
  15.      child{node{$y: \neg H$}
  16.       child{node(nodek){$y: \neg K$}
  17.         child{node(nodenotk){$y: K$}
  18.            child [level distance=.5cm]{node{$\Box$} edge from parent [draw=none]}}
  19.         }}}}}}}};
  20. \path[<->,dashed](nodem) edge[bend right] node[left] {$\lightning$} (nodenotm);
  21. \path[<->,dashed](nodek) edge[bend left] node[right] {$\lightning$} (nodenotk);
  22. \end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement