하나의 미니 페이지에 두 개의 테이블이 나란히 있습니다. 내 질문은 환경 의 전체 너비를 사용 \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}