[Tex/LaTex] remove boldface from chapter titles, section and subsection names

boldfontssectioning

How is it possible to remove the boldface from chapter titles, section and subsection names? I have found the following code for sections, but I can't find a way for chapters and subsections.

\makeatletter
 \renewcommand\section{\@startsection {section}{1}{\z@}%
 {-3.5ex \@plus -1ex \@minus -.2ex}%
 {2.3ex \@plus.2ex}%
 {\normalfont\Large}}
 \makeatother

EDIT: Be sure to check the answer I provided in addition to Tobi's and Werner's answers.

Best Answer

Depending on the class you are using there are different more or less easy ways.

If you use* KOMA-Script (which is recommended especially for german texts) you can change the disposition font element:

\documentclass{scrbook}% analogus to book class

\setkomafont{disposition}{\mdseries\rmfamily}

\begin{document}
\chapter{Chapter}
\section{Section}
\subsection{Subsection}
\subsubsection{Subsubsection}
\end{document}

Otherwise the titlesec package may helps

\documentclass{book}

\usepackage[md]{titlesec}

\begin{document}
\chapter{Chapter}
\section{Section}
\subsection{Subsection}
\subsubsection{Subsubsection}
\end{document}

The titlesec package would work with KOMA-Script too …

* A full working minimal working example (MWE) would have showed the class so I don’t have to guess ;-)