\toprule на двух мини-страницах?

\toprule на двух мини-страницах?

У меня есть две таблицы рядом, на одной мини-странице каждая. Мой вопрос в том, как использовать \topruleи \bottomruleдля охвата всей ширины среды table(в отличие от охвата только текущего tabular)? Под "всей шириной" я не имею в виду буквально длину, равную \textwidth, но чтобы быть умным с этим, как \topruleесть.

\documentclass{article}

\usepackage{booktabs}

\begin{document}

\begin{table}
  % I want a \toprule (?) here (?) to (cleverly) span
  % the entire table environment.
  \begin{minipage}[t]{.5\textwidth}
    \begin{tabular}{c}
      \toprule            % This spans only this (leftmost) table.
      \\
      % Table Content.
      \\
      \bottomrule
    \end{tabular}
  \end{minipage}
  ~
  \begin{minipage}[t]{.5\textwidth}
    \begin{tabular}{c}
      \toprule            % This spans only this (rightmost) table.
      \\
      % Table Content.
      \\
      \bottomrule
    \end{tabular}
  \end{minipage}
\end{table}

\end{document}

решение1

Вложенные столы.

\documentclass{article}

\usepackage{booktabs,array}

\begin{document}

\begin{table}

\begin{tabular}{
  @{}
  p{\dimexpr.5\textwidth}
  @{}
  p{\dimexpr.5\textwidth}
  @{}
}
\toprule
\begin{tabular}{c}
\toprule
Table Content. \\
\bottomrule
\end{tabular}
&
\begin{tabular}{c}
\toprule
Table Content. \\
\bottomrule
\end{tabular}
\\
\bottomrule
\end{tabular}

\end{table}

\end{document}

введите описание изображения здесь

Связанный контент