提问于:
浏览数:
10288
由于有多个相关的表格,都只有一列,希望将几个表格并排显示,不希望一个表格一个表格地显示,但也不希望放在一个表格里显示.
2 回答
3
```tex
\documentclass{article}
\begin{document}
\begin{table}
\begin{minipage}{0.45\linewidth}
\centering
\caption{Table 1}
\begin{tabular}{cc}
\hline
Author & Title \\
\hline
Knuth & The \TeX book \\
Lamport & \LaTeX \\
\hline
\end{tabular}
\end{minipage}
\begin{minipage}{0.45\linewidth}
\centering
\caption{Table 2}
\begin{tabular}{cc}
\hline
Author & Title \\
\hline
Knuth & The \TeX book \\
Lamport & \LaTeX \\
\hline
\end{tabular}
\end{minipage}
\end{table}
\end{document}
```
0
以下为CSDN上找到的一个解决方案,转载如下
```
\documentclass{article}
\usepackage{floatrow}
\floatsetup[table]{capposition=top}
\newfloatcommand{capbtabbox}{table}[][\FBwidth]
\begin{document}
\begin{table*}
\begin{floatrow}
\capbtabbox{
\begin{tabular}{cc}
\hline
Author & Title \\
\hline
Knuth & The \TeX book \\
Lamport & \LaTeX \\
\hline
\end{tabular}
}{
\caption{A table.}
\label{tab:tb1}
}
\capbtabbox{
\begin{tabular}{cc}
\hline
Author & Title \\
\hline
Knuth & The \TeX book \\
Lamport & \LaTeX \\
\hline
\end{tabular}
}{
\caption{B table.}
\label{tab:tb2}
}
\end{floatrow}
\end{table*}
\end{document}
```
样式效果如下
![](https://pics.latexstudio.net/data/images/201912/354d1320209f434.jpeg)
————————————————
版权声明:本文为CSDN博主「xmjdh」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/lqhbupt/article/details/48293113
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。