如何擴展表格的標題行和摘要行?

如何擴展表格的標題行和摘要行?

我想將表格的標題行和摘要行擴展到頁面寬度。請有人幫我解決這個問題,我不知道該怎麼做。

這是我現有的表: 圖片1

我想要的表: 在此輸入影像描述

我的程式碼:

\begin{longtable}{l@{\extracolsep{\fill}\hspace{\tabcolsep}} p{.6\textwidth} l r r r r }
    \hline
    \rowcolor{black}
    \textcolor{white} {POS} &\textcolor{white} {DESCRIPTION} & \textcolor{white} {QTY} & \textcolor{white} {PRICE (\pounds)} & \textcolor{white} {AMOUNT  (\pounds)} \\*
    \hline\hline
    \endhead
}{

    & & & {MWSt \taxval \%} & {\taxes{\arabic{cost}}{\taxval}} \\
    \hline\hline\hline
    & & &  {Summe EUR} & {\addtaxes{\arabic{cost}}{\taxval}} \\
    \end{longtable}

答案1

調整桌子變化的位置\oddsidemargin -1in

\documentclass[a4paper,10pt]{article}

\usepackage{geometry}
\begin{document}
\marginparwidth 0pt
\marginparsep 0pt
\oddsidemargin \dimexpr .5in -1in
\textwidth \dimexpr \pdfpagewidth \oddsidemargin -1in 

\begin{table} % 
    \centering
    \caption{Obtained marks.} 
    \begin{tabular}{p{16cm} l l l l }
        \hline Name & Math & Phy & Chem & man \\
        \hline Salah & 80 & 68 & 60 & 57\\
        \hline Muhammed & 72 & 62 & 66 & 63\\
        \hline Ahmad & 75 & 70 & 71 & 69\\
        \hline
    \end{tabular}   
\end{table}
\end{document}

相關內容