테이블의 머리글 행과 요약 줄을 어떻게 확장할 수 있나요?

테이블의 머리글 행과 요약 줄을 어떻게 확장할 수 있나요?

표의 머리글 행과 요약 줄을 페이지 너비로 확장하고 싶습니다. 누군가 저를 도와주세요. 어떻게 해야할지 모르겠습니다.

내 기존 테이블은 다음과 같습니다. 이미지 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}

관련 정보