How to reduce the space before and after titles specified by \section and \subsection
- \subsection
- \section

How to reduce the space before and after titles specified by \section and \subsection


You can use the \titleformat* from the titlesec package:
\documentclass{article}
\usepackage{titlesec}
\titlespacing*{\section}{0pt}{0.1\baselineskip}{0.2\baselineskip}
\begin{document}
\section{First}
asdkfjhsakdjfhsdaf
\section{Second}
asldfhsajldfh
\end{document}
with the first number (0.1) adjusting the space above and second number (0.2) adjusting the space below.
For more details, see section 3.2 in the manual: http://tug.ctan.org/tex-archive/macros/latex/contrib/titlesec/titlesec.pdf