I'm building my resume in LaTeX and the template I'm using some ideas from defined an environment like such:
\newenvironment{body} {
\vspace*{-16pt}
\begin{changemargin}{-0.25in}{-0.5in}
}
{\end{changemargin}
}
And whenever I start a portion of my resume (a section, that is) I start with \begin{body}. However, for spacing issues I always have \vspace{14pt} after every \begin{body} (and right before \end{body} which just seems asinine if I can make it part of the environment. So I changed it to:
\newenvironment{body} {
\vspace*{-2pt}
\begin{changemargin}{-0.25in}{-0.5in}
}
{\end{changemargin}
\vspace{14pt}
}
Is this correct in that it yields the same result?
Also, what does the \vspace* do as compared to \vspace?