Advertisement
VincentOostelbos

Natural deduction proof tree minimal working example

Sep 8th, 2015
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.55 KB | None | 0 0
  1. \documentclass[12pt]{article}
  2. \usepackage{bussproofs}
  3.  
  4. \begin{document}
  5.  
  6. \begin{prooftree}
  7.             \AxiomC{(given)}
  8.         \alwaysNoLine
  9.         \UnaryInfC{$A \rightarrow B$}
  10.                     \AxiomC{(given)}
  11.                 \UnaryInfC{$B \rightarrow C$}
  12.                     \AxiomC{(axiom)}
  13.                 \UnaryInfC{$(W)$}
  14.             \alwaysSingleLine
  15.             \BinaryInfC{$A \rightarrow (B \rightarrow C)$}
  16.                 \AxiomC{(axiom)}
  17.             \alwaysNoLine
  18.             \UnaryInfC{$(I)$}
  19.         \alwaysSingleLine
  20.         \BinaryInfC{$(A \rightarrow B) \rightarrow (A \rightarrow C)$}
  21.     \BinaryInfC{$A \rightarrow C$}
  22. \end{prooftree}
  23.  
  24. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement