表格下的图例

表格下的图例

有两个表格,第二个表格是第一个表格的图例。如何才能轻松地合并这两个表格而不破坏第一个或第二个表格的布局?

\begin{table}[htbp]
  \begin{tabular}{|lccccc|}
    \small{333333333333333333} & E1111MP & EMP       & EMP  & adddW        & SOW          \\ 
    \small{4444444444444444}   & CsssON  & 222d2EMP  & D    & HAAAddddddW  & Erad23P      \\ 
    \small{555555}             & EEEP    & BRxxxxxRR & TTMP & TTxxxxxxxxMP & EMXxx xxxxXP \\ 
  \end{tabular}
\end{table}
\begin{table}[htbp]
  \begin{tabular}{|lcc|} 
    \small{444444 4444444444} & Csddddddddss ddd dddddddd & dasadafasdfa               \\ 
    \small{555555}            & EEEP                      & BRxxxxxxxxxxxxxxxxxxxxxxRR \\ 
  \end{tabular}
\end{table}

答案1

两个都 table环境。

\begin{table}[htbp]
  \begin{tabular}{|lccccc|}
    \small{333333333333333333} & E1111MP & EMP       & EMP  & adddW        & SOW          \\ 
    \small{4444444444444444}   & CsssON  & 222d2EMP  & D    & HAAAddddddW  & Erad23P      \\ 
    \small{555555}             & EEEP    & BRxxxxxRR & TTMP & TTxxxxxxxxMP & EMXxx xxxxXP \\ 
  \end{tabular}

  \begin{tabular}{|lcc|} 
    \small{444444 4444444444} & Csddddddddss ddd dddddddd & dasadafasdfa               \\ 
    \small{555555}            & EEEP                      & BRxxxxxxxxxxxxxxxxxxxxxxRR \\ 
  \end{tabular}
\end{table}

相关内容