我正在使用 LaTeX 做报告。我在这方面没有太多经验,需要解决这个问题。这是一个简单的问题:
如何在 LaTeX 中排列两个表格,使一个表格与另一个表格相邻?
例如:
[Table1] [Table2]
答案1
以下代码应该可以工作:
\documentclass{article}
\begin{document}
%----------------------------------------
% No space between the tables
\begin{tabular}{|c|c|}
\hline
test & test\\ \hline
\end{tabular}
\begin{tabular}{|c|c|}
\hline
test & test\\ \hline
\end{tabular}
\par
%----------------------------------------
% Added a space between the tables
\begin{tabular}{|c|c|}
\hline
test & test\\ \hline
\end{tabular}
\hspace{2cm}
\begin{tabular}{|c|c|}
\hline
test & test\\ \hline
\end{tabular}
%----------------------------------------
% Centered with a space between the tables
\begin{center}
\begin{tabular}{|c|c|}
\hline
test & test\\ \hline
\end{tabular}
\hspace{2cm}
\begin{tabular}{|c|c|}
\hline
test & test\\ \hline
\end{tabular}
\end{center}
\end{document}
答案2
或者minipage
\documentclass{article}
\begin{document}
\begin{table}[!htb]
\begin{minipage}{.5\textwidth}
\centering
\caption{}
\label{tab:first}
\begin{tabular}{rcl}
right & center & left \\
right & center & left
\end{tabular}
\end{minipage}%
\begin{minipage}{.5\textwidth}
\centering
\caption{}
\label{tab:second}
\begin{tabular}{rcl}
right & center & left \\
right & center & left
\end{tabular}
\end{minipage}
\end{table}
\end{document}
注意%
第一个之后的,\end{minipage}
以防止多余的空间产生overfull hbox
。