How can you create vertical space before a new section on a new page begins? Using vspace or bigskip does not work.
Example:
\vspace{5mm}
\section{Section 1}
Some text
\subsection{Section 1.1}
How can you create vertical space before a new section on a new page begins? Using vspace or bigskip does not work.
Example:
\vspace{5mm}
\section{Section 1}
Some text
\subsection{Section 1.1}
As I stated in a comment, you can use the starred version of \vspace{...}, that is:
\vspace*{5mm}
\section{Section 1}
Some text
\subsection{Section 1.1}
A similar question (and thus answer) is asked here: difference between \vspace and \vspace* for negative arguments
This also answers your follow up question.
\vspace*{5mm} instead of \vspace{5mm} solves the problem. The star is essential.
– b4154
Apr 12 '16 at 10:57
\vspace*{5mm}? – Thomas Apr 12 '16 at 10:36vspace*. What is the problem withvspacewithout *? – b4154 Apr 12 '16 at 10:55\section? If the latter it would be better to adapt the\sectioncommand accordingly. (The best way to do this depends on the class you're using.) – cgnieder Apr 12 '16 at 11:47\vspace*is error prone and surely the wrong way to proceed. – cgnieder Apr 12 '16 at 13:31