答案1
我明显有偏见,但我会使用prooftrees
:
\documentclass{standalone}
\usepackage[tableaux]{prooftrees}
\forestset{
my label/.style={
edge label={node [midway, font=\scriptsize, left] {$#1$}}
},
}
\begin{document}
\begin{tableau}{not line numbering, single branches, not auto move}
[(\lnot A \to (B \to \lnot C))
[\lnot A, my label=\to
[A, my label=\lnot]
]
[ (B \to \lnot C)
[B, my label=\to]
[\lnot C[C, my label=\lnot]]
]
]
\end{tableau}
\end{document}
我只是用它standalone
作为例子,但显然你可以使用amsart
任何你想要的东西。