설명된 대로 두 개의 테이블을 수직으로 쌓고 싶습니다.여기스테판. 나는 테이블 전체(두 표 모두)를 포함 \toprule
하고 싶습니다.\bottomrule
내가 얻는 문제는 \toprule
표 형식의 열 너비이고 \bottomrule
두 번째 표 형식의 너비라는 것입니다.
위 링크에서 사용된 코드를 수정하여(나에게 관련된 패키지만 사용하기 위해) 이것이 제가 시도하는 방법입니다.
\documentclass{article}
\usepackage{caption}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\caption{An interesting table}
\begin{tabular}{lcr}
\toprule
First name & Last name & Product \\
Bubba & Gump & Shrimp \\
Steve & Jobs & Happiness
\end{tabular}
\bigskip
\begin{tabular}{ll}
School & State \\
Harvard & MA \\
Yale & CT \\
Brown & RI \\
\bottomrule
\end{tabular}
\end{table}
\end{document}
답변1
예를 들어 열 지정자로 적용 하고 외부 테이블에 대해 tabular
다른 테이블의 너비를 확장하는 외부를 사용한 다음 다른 두 환경을 내부에 배치하는 것이 가능합니다 .@{}c@{}
\toprule
\bottomrule
tabular
\documentclass{article}
\usepackage{caption}
\usepackage{booktabs}
\begin{document}
\begin{table}
\centering
\caption{An interesting table}
\begin{tabular}{@{}c@{}}
\toprule
\begin{tabular}{lcr}
First name & Last name & Product \\
Bubba & Gump & Shrimp \\
Steve & Jobs & Happiness
\end{tabular} \\
\midrule[0pt] % Empty midrule which adds vertical spacing anyway above and below but is not drawn itself
\begin{tabular}{ll}
School & State \\
Harvard & MA \\
Yale & CT \\
Brown & RI
\end{tabular} \tabularnewline
\bottomrule
\end{tabular}
\end{table}
\end{document}