I started using Latex recently and I put together 4 ways of changing the space in a table. Two general ways defining the general space between cols and rows as well as two ways of adding space between certain rows or cols. I was wondering if the 4 ways I use are the best or most common one to use to adjust space in a table?
Here is my simple example:
\begin{table}
\setlength{\tabcolsep}{6pt} % General space between cols (6pt standard)
\renewcommand{\arraystretch}{1} % General space between rows (1 standard)
% Add @{\hskip Xpt} to tabular to add space between certain columns
% Add [Xpt] after \\ of a certain row to add extra space before next row
\begin{tabular}{c@{\hskip 12pt}c}
% table content
\end{tabular}
\end{table}
\extracolsep{WIDTH}, here which doesn't appear in many of the other answers around the site and lets you force tables-within-tables together. – dmckee --- ex-moderator kitten Apr 06 '16 at 02:48