I'd love to know why traditional document classes are not including a new line after the \paragraph
sectioning command. Maybe there is some typographic history behind it or something (maybe not and this is a totally dumb question), just curious. Searching the web wasn't from help to answer this.
[Tex/LaTex] Why is there no new line after paragraph sectioning commands
sectioningsections-paragraphstypography
Best Answer
Most latex sectioning commands (below
\chapter
) are handled by the internal\@startsection
macro. This implements two distinct styles of heading display headings that are offset vertically from the following paragraph, and inline headings that are set as the initial part of the following paragraph.The standard classes switch style to inline at the
\paragraph
level although it is easy to redefine them back if you wish.Inline "headings" are not that uncommon but sometimes "heading" text isn't really a heading but just the first word(s) of the paragraph. The setting is often similar to that of a
description
environment which is often another alternative markup at this level, there isn't really a hard line between sectional units of a document and a list once you get down to level 5 or 6 headings.