A problem I do have, so far, though, is the spacing within cells in a
tabular* table. There is more padding around the left and right edges
than I want. I've Googled this and can't find a setting for it anywhere.
Thank you for any suggestions.
Justin.
--
Justin C, by the sea.
You can change the tabular cell spacing in the whole document by
change the length of the parameter \tabcolsep. Naturally, this command
contains the separation between columns in a tabular environment. More
specifically, this change may be made by means of the command
\setlength{\tabcolsep}{5ex}
where the last (5ex in this case) is any valid LaTeX measurement (for
example, 1em, 20pt, 2mm, 5cm, etc). You will be able to see the
effects by compiling the following minimal LaTeX example:
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\setlength{\tabcolsep}{5ex}
\begin{tabular}{|p{0.3\textwidth}|p{0.3\textwidth}|p{0.3\textwidth}|}
\lipsum[1] & \lipsum[2] & \lipsum[3]
\end{tabular}
\end{document}
That's great, thank you.
I'm very new to TeX... so new that this is my first project. The problem
I have is that the project is a big one! I've spent a lot of time with
Google, and the (La)Tex documentation I have been able to find, but the
learning curve is a steep one. I really appreciate the help.
Justin,
In that sense, news groups are a good way to exchange ideas and get
feedback from a variety of sources. Apart from this news group,
another called comp.text.tex has been around for almost 2 decades, and
regularly has more than 2000 posts a month ~ 70 posts a day, ranging
from novice to extremely advanced/technical LaTeX questions.
Performing a search on comp.text.tex typically reveals solved problems
similar to yours.
Just a way of spreading the LaTeX knowledge...
Werner
...I meant to say LaTeX Users Group...this _is_
comp.text.tex...whoops! LaTeX Users Group doesn't receive as many
posts as comp.text.tex, only about 1/day...
Werner