I have a wide table that doesn't fit the document margins, even if I use scriptsize font.
(I set margins=2.2cm in the preamble using the geometry package).
how can I change the margins just for the table?
I tried and create a custom environment using list for chaning the left margin.
Code: Select all
\newenvironment{newMargins}[1]%
{\begin{list}{}%
{\setlength\labelwidth{0pt}%
\setlength\leftmargin{#1}}\item[]}%
{\end{list}}
Plz help me!
Ty