[Tex/LaTex] Longtable fill entire page

landscapelongtabletables

I'm using the longtable environment inside the landscape environment, as I have a large table, which spans several pages. However, I would like my table to fill out the entire page with little to no margin. Is this possible with longtable or another environment? Current version below.

\begin{landscape}
    \begin{longtable}{|p{4cm}|p{4cm}|p{4cm}|p{1cm}|p{4cm}|p{5cm}|}
        \hline
        Interessent & Mål/interesse(r) & interesse/aktivitetsniveau & Magt & Konfliktpunkter & Håndtering/indragelse \\ \hline
       ...
       \\ \hline
    \end{longtable}
\end{landscape}

Best Answer

You can change the margins of each page seperately with

\usepackage[a4paper]{geometry}

to change to a new margin

\newgeometry{left=3cm,bottom=0.1cm}

to set it back

\restoregeometry

BUT, I also notice you have defined the width of your columns exactly. If you do that, you will have to put them in a way that the columns in one page stretch to the exact page width that you define (A4paper - left and right margin).

Related Question