I have a LaTeX table that looks like this:
\begin{table}[!ht]
\centering
\small
\caption{
\bf{Caption}}
\begin{tabular}{l|c|c|l|c|c|c|c|c}
field1 & field 2 & ... \\
\hline
...
the problem is that even with “\small” the table is too big, since I use:
\usepackage{setspace}
\doublespacing
in the header. How can I:
- Make the table single spaced? and
- Make the table smaller?
I’d like it to fit on an entire page.
As well as
\singlespacingmentioned previously to reduce the height of the table, a useful way to reduce the width of the table is to add\tabcolsep=0.11cmbefore the\begin{tabular}command and take out all the vertical lines between columns. It’s amazing how much space is used up between the columns of text. You could reduce the font size to something smaller than\smallbut I normally wouldn’t use anything smaller than\footnotesize.