latex两个表格并列
时间: 2023-10-05 21:07:06 浏览: 322
要在LaTeX中让两个表格并列显示,可以使用minipage环境。首先,你需要在导言区加载caption宏包。然后,在document环境中,使用minipage环境来创建两个并列的小页。在每个小页中,使用tabular环境来创建表格。你可以使用tabular环境的参数来设置表格的格式和内容。最后,使用captionof命令为每个表格添加标题。下面是一个示例的LaTeX代码:
\begin{verbatim}
\documentclass{article}
%...
\usepackage{caption}
%...
\begin{document}
%...
\begin{minipage}[c]{0.5\textwidth}
\centering
\begin{tabular}{|c|c|c|}
\hline
A & B & C \\
\hline
1 & 2 & 3 \\
\hline
4 & 5 & 6 \\
\hline
\end{tabular}
\captionof{table}{table no. 1}
\end{minipage}
\begin{minipage}[c]{0.5\textwidth}
\centering
\begin{tabular}{|c|c|c|}
\hline
A & B & C \\
\hline
1 & 2 & 3 \\
\hline
4 & 5 & 6 \\
\hline
\end{tabular}
\captionof{table}{table no. 2}
\end{minipage}
%...
\end{document}
\end{verbatim}
这段代码会生成两个并列的表格,每个表格占据页面宽度的一半,并且每个表格都有自己的标题。你可以根据需要调整表格的样式和内容。