HACKER Q&A
📣 phba

What are some useful LaTeX tips?


I'll start:

You can define custom lengths in the preamble to have a single point of control for spacing in multiple places.

  \newlength{\CustomGap}
  \setlength{\CustomGap}{6ex}
  
  % example usage:
  \vspace{\CustomGap}


  👤 anthk Accepted Answer ✓
Run pdflatex twice at least.