\documentclass[11pt]{article}
\usepackage{tabu}
\usepackage[inline]{enumitem}
\begin{document}
\section{abc}
\begin{enumerate}
\item
\begin{enumerate*}
\item
\begin{tabu}[t]{c|c}
\firsthline
$p$ & $p \to \neg p$ \\
\hline
T & F \\
F & T \\
\hline
\end{tabu} \\
\item
\begin{tabu}[t]{c|c}
\firsthline
$p$ & $p \leftrightarrow \neg p$ \\
\hline
T & F \\
F & F \\
\hline
\end{tabu}
\end{enumerate*}
\item
This is the second item.
\end{enumerate}
\end{document}
I use inline enumerate to put multiple tables in a line and use forced linebreak when needed. The vertical space between two lines of tables are too small. How to make it bigger?
