[Tex/LaTex] \subsection{…}-result in line with following text

sectioning

Hello this is my first question here.

Normally, if I write something like

\subsection*{a)}
 blabla

it is displaid like

a)
blabla

Now I want to achieve that this two elements are inline like

a) blabla

Is this possible?

Best Answer

Use \paragraph and \subparagraph:

\documentclass{article}
\begin{document}
\section*{This is a section}
\subsection*{This is a subsection}
\subsubsection*{This is a subsubsection}
\paragraph{This} is a paragraph.
\subparagraph{This} is a subparagraph.
\end{document}

Which results in:

Section and Paragraph levels

You can also number them by setting secnumdepth to 4 or 5.

\setcounter{secnumdepth}{5}

Or you could use a 'numbered' list:

\documentclass{article}
\usepackage{lipsum}
\begin{document}
\begin{enumerate}
    \renewcommand{\labelenumi}{\bfseries\alph{enumi})}
    \item \lipsum[2]
    \item \lipsum[3]
\end{enumerate}
\end{document}

Which results in:

Alphabetized List

Related Question