I notice that the space between each column of a table in LaTeX is not quite wide (at least for me). Is there any way to set this? I found the \hspace, but I don't get how to use this in the table.
ADDED:
Found the answer! put \renewcommand{\tabcolsep}{3cm} (the 3cm is just an example) if you want to change the space in all table. If you want to change it on one or several, Stefan's answer will be the best.
\tabcolsepchanged everywhere, we can do\renewcommand{\tabcolsep}{0.15cm}– zfm Apr 24 '11 at 22:40\renewcommand{\tabcolsep}{...}is definitely wrong; the correct way is with\setlength. – egreg Apr 24 '11 at 22:55