在Latex中,如何将两张单独的桌子(带有独立的船长)并排放在纸张上?
非常感谢任何帮助。
答案 0 :(得分:1)
一种可能性是将表格环境与[t]
对齐,然后使用小型邮件将其拆分,可选择用灵活空间分隔。
\documentclass{article}
\def \hfillx {\hspace*{-\textwidth} \hfill}
\begin{document}
\begin{table}[t]
\begin{minipage}{0.5\textwidth}
\centering
\begin{tabular}{r | c c c}
$+$
& 1 & 2 & 3 \\\hline
1 & 2 & 3 & 4 \\
2 & 3 & 4 & 5 \\
3 & 4 & 5 & 6
\end{tabular}
\caption{Addition}
\end{minipage}
\hfillx
\begin{minipage}{0.5\textwidth}
\centering
\begin{tabular}{r | c c c}
$\times$
& 1 & 2 & 3 \\\hline
1 & 1 & 2 & 3 \\
2 & 2 & 4 & 6 \\
3 & 3 & 6 & 9
\end{tabular}
\caption{Multiplication}
\end{minipage}
\end{table}
%
\section{Section}
Text
\end{document}
如果表格很大,可能需要通过将其放入序言中来放大允许浮点数的页面的上部分:
\def \textfraction {0.1}
\def \topfraction {0.9}