Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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 ?

like image 825
euphoria83 Avatar asked Jan 26 '11 20:01

euphoria83


1 Answers

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.

like image 92
Svante Avatar answered Oct 01 '22 14:10

Svante