split figures

This commit is contained in:
2024-07-09 05:31:09 +00:00
parent 065400e675
commit 9672035ba3
4 changed files with 134 additions and 128 deletions

27
src/typing.tex Normal file
View File

@@ -0,0 +1,27 @@
\begin{figure}[ht]
\begin{tabular}{cc}
\begin{minipage}[t]{0.45\hsize}
\centering
\begin{equation*}
\frac{\Gamma, x:\tau_a \vdash e:\tau_b}{\Gamma \vdash \lambda x.e:\tau_a \to \tau_b }
\end{equation*}\textrm{T-LAM}
\end{minipage} &
\begin{minipage}[t]{0.45\hsize}
\centering
\begin{equation*}
\frac{ \Gamma \vdash e_1:N \quad \Gamma \vdash e_2:\tau }{\Gamma \vdash delay\ e_1\ e_2 : \tau}
\end{equation*}\textrm{T-DELAY}
\end{minipage}\\
\begin{minipage}[t]{0.45\hsize}
\centering
\begin{equation*}
\frac{\Gamma, x : \tau_p \vdash e: \tau_p }{\Gamma \vdash feed\ x.e:\tau_p}
\end{equation*}\textrm{T-FEED}
\end{minipage}&
\end{tabular}
\caption{\label{fig:typing}{\it Typing rules for lambda abstraction and feed abstraction in $\lambda_{mmm}$.}}
\end{figure}