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 ?
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.