latex 两个表格并列
时间: 2023-10-03 20:06:02 浏览: 223
latex表格绘制教程
您可以使用`subcaption`和`subfigure`宏包来实现将两个表格并列的效果。以下是一个示例代码:
```latex
\documentclass{article}
\usepackage{subcaption}
\usepackage{booktabs}
\begin{document}
\begin{table}[htbp]
\centering
\begin{subtable}[b]{0.4\linewidth}
\centering
\caption{第一个表格}
\begin{tabular}{ccc}
\toprule
列1 & 列2 & 列3 \\
\midrule
数据1 & 数据2 & 数据3 \\
数据4 & 数据5 & 数据6 \\
\bottomrule
\end{tabular}
\end{subtable}%
\hspace{0.1\linewidth}
\begin{subtable}[b]{0.4\linewidth}
\centering
\caption{第二个表格}
\begin{tabular}{ccc}
\toprule
列1 & 列2 & 列3 \\
\midrule
数据7 & 数据8 & 数据9 \\
数据10 & 数据11 & 数据12 \\
\bottomrule
\end{tabular}
\end{subtable}
\caption{两个表格并列}
\end{table}
\end{document}
```
这段代码创建了两个并列的表格,并使用`subcaption`宏包为每个表格添加了标题。您可以根据需要调整表格的宽度和其他样式设置。
阅读全文