答案1
考虑使用adjustbox
tabular
将s 与s垂直对齐\item
作为默认的[t]
op 和[b]
ottom 对齐,当包含水平规则 - \hline
s - 时会影响它:
\documentclass{article}
\usepackage{adjustbox}
\begin{document}
\begin{enumerate}
\item
\adjustbox{valign=t}{\begin{tabular}{|c|c|}
\hline
Lorem & Ipsum \tabularnewline
\hline
One &\tabularnewline
Two & Wow \tabularnewline
Three& \tabularnewline
\hline
\end{tabular}}
\qquad
\begin{tabular}[t]{|c|c|}
\hline
Lorem & Ipsum \tabularnewline
\hline
One &\tabularnewline
Two & Wow \tabularnewline
Three& \tabularnewline
\hline
\end{tabular}
\item
\adjustbox{valign=b}{\begin{tabular}{|c|c|}
\hline
Lorem & Ipsum \tabularnewline
\hline
One &\tabularnewline
Two & Wow \tabularnewline
Three& \tabularnewline
\hline
\end{tabular}}
\qquad
\begin{tabular}[b]{|c|c|}
\hline
Lorem & Ipsum \tabularnewline
\hline
One &\tabularnewline
Two & Wow \tabularnewline
Three& \tabularnewline
\hline
\end{tabular}
\end{enumerate}
\end{document}