[Tex/LaTex] How to add a subtitle to a section title

sectioningspacingtext manipulation

I'd like to do this for some of my sections but not all. I'd also like to maintain the current spacing; for example, if the vspacing is 1cm from section title to body text (at 100% zoom), then I'd like it to be 1cm from the subtitle to body text.

Thanks.

Best Answer

If the section's subtitle has to show up in the TOC, then use:

\documentclass[10pt]{article}
\begin{document}
\tableofcontents
\section[Section Title. Section Subtitle]{Section 
   Title\\ {\large Section Subtitle}}
\section{Another Section}
\end{document}