I'm writing a LaTeX class for my bachelor's thesis. My university's standard says that there should be a space after headers:
- 2cm if there's text after the header
- 1.3cm if there's another header after it (for example, subsequent section and subsection headers).
For now I've set 2cm space after all headers (in the class file) and adding \vspace{-7mm} between subsequent headers (manually, in the document). Is there a way to make it automatically, i.e. some kind of "conditional spacing" if the last command was a header?
13mm, and look into the code that prevents the first paragraph from indenting; then add another7mmspace there. – jmc Jun 06 '13 at 08:11\renewcommand{\chapter}{...}which will add the spaces depending on the previous occurred command. Is that possible? – Valeriy Streltsov Jun 06 '13 at 11:29tikzmarkin every head, and let the next head check what the distance is to the previous head. But I think this is very demanding on resources… – jmc Jun 06 '13 at 19:58