我使用下面的方法将两个 tabularx 环境并排放置
\begin{table}
\begin{center}
\begin{tabularx}{190pt}{l}
\toprule
... Content ...
\bottomrule
\end{tabularx}
\quad
\begin{tabularx}{190pt}{l}
\toprule
... Content ...
\bottomrule
\end{tabularx}
\end{center}
\end{table}
我该如何进一步调整两个 tabularx 环境的顶部?
答案1
[t]
在每个 上使用参数tabularx
。
答案2
使用minipage
:
\documentclass{book}
\usepackage{tabularx,booktabs}
\begin{document}
\begin{minipage}[l]{200pt}{%
\centering
\begin{tabularx}{190pt}{X}
\toprule
... Content ...\\\midrule
... Content ...\\
\bottomrule
\end{tabularx}}
\end{minipage}
\hfill
\begin{minipage}[r]{200pt}{%
\centering
\begin{tabularx}{190pt}{X}
\toprule
... Content ...\\\midrule
... Content ...\\
\bottomrule
\end{tabularx}}
\end{minipage}
%
\end{document}