我想將環境中的一列居中放置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 中,我還刪除了第四列 cpacifier ( c
),因為您只需要三個欄位。我還添加了 \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}