Text FormattingHow decrease table size?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

How decrease table size?

Post by localghost »

OK, that's something to work with (although you forgot the textcomp package). So taking the time to work out a MWE was worth it.

The only solution I see is to decrease the font size to \tiny combined with a rotation of the whole table. For the latter one you can use the sidewaystable environment from the rotating package instead of the tabular environment.

Code: Select all

\begin{sidewaystable}
  % table contents (with caption)
\end{sidewaystable}
Note that this environment will start a new page and occupy it entirely without any text. Regarding the size of the table this shouldn't matter.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

artemff
Posts: 113
Joined: Sat Oct 17, 2009 11:15 pm

Re: How decrease table size?

Post by artemff »

localghost, thanks...
Post Reply