환경 내에서 열을 오른쪽 중앙에 배치하고 싶습니다 tabular*
. 다음 스니펫을 참조하세요.
\begin{tabular*}{\textwidth}{l @{\extracolsep{\fill}} llc}
\hline
\textbf{Art} & \textbf{Stundensatz} & \textbf{Gesamt} \\
\hline
Doing this & 1,5 à 100 Euro & 150,00 Euro \\
\hline
This \& That & 3 à 100 Euro & 300,00 Euro \\
\hline
Even more stuff and corrections & 3,5 à 100 Euro & 350,00 Euro \\
\hline
Hearing & 1 à 100 Euro & 100,00 Euro \\
\hline
MwSt. in Höhe von 19\% & & 171,00 Euro \\
\hline
Gesamt & & 1071,00 Euro \\
\hline
\end{tabular*}
어느 것 같아
마지막 두 열을 오른쪽 가운데에 맞추는 방법은 무엇입니까?
답변1
두 번째와 세 번째 열을 오른쪽 정렬하려면 r
대신을 사용하십시오 l
. 다음 MWE에서는 c
세 개의 열만 필요하므로 네 번째 열 cpacifier( )도 제거했습니다. \multicolumn{1}{c}{...}
두 번째와 세 번째 열의 열 머리글을 중앙에 배치하기 위해 추가했습니다 .
MWE의 두 번째 테이블은 tabularx
첫 번째 열의 긴 항목이 자동으로 두 개 이상의 줄로 분할되어 테이블의 텍스트 너비가 텍스트 너비를 초과하지 않도록 하기 위해 사용되었습니다. 이 두 번째 표에서는 패키지의 규칙도 사용했습니다 booktabs
. 이 선의 위와 아래에는 수직 공백이 있습니다.
\documentclass{article}
\usepackage{booktabs}
\usepackage{tabularx}
\begin{document}
\begin{tabular*}{\textwidth}{l @{\extracolsep{\fill}} rr}
\hline
\textbf{Art} & \textbf{Stundensatz} & \textbf{Gesamt} \\
\hline
Doing this & 1,5 à 100 Euro & 150,00 Euro \\
\hline
This \& That & 3 à 100 Euro & 300,00 Euro \\
\hline
Even more stuff and corrections & 3,5 à 100 Euro & 350,00 Euro \\
\hline
Hearing & 1 à 100 Euro & 100,00 Euro \\
\hline
MwSt. in Höhe von 19\% & & 171,00 Euro \\
\hline
Gesamt & & 1071,00 Euro \\
\hline
\end{tabular*}
\bigskip
\begin{tabularx}{\textwidth}{Xrr}
\toprule
\textbf{Art} & \multicolumn{1}{c}{\textbf{Stundensatz}} & \multicolumn{1}{c}{\textbf{Gesamt}} \\
\midrule
Doing this & 1,5 à 100 Euro & 150,00 Euro \\
This \& That & 3 à 100 Euro & 300,00 Euro \\
Even more stuff and corrections & 3,5 à 100 Euro & 350,00 Euro \\
Hearing & 1 à 100 Euro & 100,00 Euro \\
MwSt. in Höhe von 19\% & & 171,00 Euro \\
a very long entry a very long entry a very long entry a very long entry & & \\
\midrule
Gesamt & & 1071,00 Euro \\
\bottomrule
\end{tabularx}
\end{document}