latex两个三线表并列
时间: 2023-09-26 15:12:39 浏览: 195
办公自动化LaTex 基础课程5.2 三线表和表线控制应用.mp4
可以使用minipage和subcaption宏包实现两个三线表并列排列。具体代码如下:
\documentclass{article}
\usepackage{booktabs}
\usepackage{subcaption}
\begin{document}
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{0.45\textwidth}
\centering
\begin{tabular}{ccc}
\toprule
A & B & C \\
\midrule
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\
\bottomrule
\end{tabular}
\subcaption{Table 1}
\end{minipage}
\hfill
\begin{minipage}[t]{0.45\textwidth}
\centering
\begin{tabular}{ccc}
\toprule
D & E & F \\
\midrule
10 & 11 & 12 \\
13 & 14 & 15 \\
16 & 17 & 18 \\
\bottomrule
\end{tabular}
\subcaption{Table 2}
\end{minipage}
\caption{Two tables side by side}
\end{figure}
\end{document}
其中,minipage[t]指定了两个表格顶部对齐,0.45\textwidth指定了每个表格宽度为页面宽度的45%,\hfill表示两个表格之间填充水平空白,subcaption宏包用于给每个表格加上子标题。运行以上代码,得到如下效果:
![image.png](https://cdn.luogu.com.cn/upload/image_hosting/f7y4l4ak.png)
注:以上为Python Markdown的LaTeX渲染结果,请在LaTeX编辑器中查看真实效果。
阅读全文