How do I reduce the size of an entire LaTeX table?

euphoria83 picture euphoria83 · Jan 26, 2011 · Viewed 121.3k times · Source

I have a table that I want to appear a little smaller to save some space. What environment can I put it in to shrink the whole table by a fraction ?

Answer

Svante picture Svante · Jan 26, 2011

Use \resizebox:

\resizebox{3cm}{!}{
  \begin{something}
    something
  \end{something}
  }

The ! tells LaTeX to keep the aspect ratio. You can also scale the y direction differently by giving a value there.