$\begin{tabular}{11}
A &is true \\
B &is true \\
\hline A \wedge B &is true
\end{tabular}$
如何在后面添加“^I” \hline?
答案1
这是一个基于 LaTeX 的解决方案,它采用了\frac表达式。
\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for '\text' macro
\begin{document}
\[
\frac{\text{$A$ true} \quad \text{$B$ true}}{%
\text{$A\wedge B$ true}}
\wedge I
\]
\end{document}