I want to make table that will fill all page, without margins and other unnecessary spaces.
Code: Select all
\begin{table}[ct]
\renewcommand{\tabcolsep}{1.5cm}
\renewcommand\arraystretch{11}
\begin{tabular}{p{4cm}|p{4cm}|p{4cm}}
label 1 & label 2 & label \\
\hline
item 1 & item 2 & item 3 \\
\hline
item 1 & item 2 & item 3 \\
\hline
item 1 & item 2 & item 3 \\
\hline
item 1 & item 2 & item 3 \\
\hline
item 1 & item 2 & item 3 \\
\hline
\end{tabular}
\end{table}
http://pastebin.com/m127ff3be
I made something like this, but there is some free space (some margins) at top on the page. How to remove it ?
I will be very grateful for any help with this problem.