Tengo dos tablas una al lado de la otra, en una minipágina cada una. Mi pregunta es, ¿cómo utilizar \toprule
y \bottomrule
abarcar todo el ancho del table
entorno (en lugar de abarcar solo el actual tabular
)? Por "ancho total" no me refiero literalmente a tener una longitud igual a \textwidth
, sino a ser inteligente al respecto \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}
Respuesta1
Mesas nido.
\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}