2015-02-23 22 views

回答

0

一种可能性是将表格环境与[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}