Farbiger Abschnittstitel schlägt mit der Option [leftmargin] von titlesec fehl

Farbiger Abschnittstitel schlägt mit der Option [leftmargin] von titlesec fehl

Ich möchte, dass mein Abschnittstitel farbig ist. Es ist in Ordnung, wenn ich es \titleformataus dem Paket verwende titlesec, um es festzulegen.

Aber wenn ich das Optionsargument hinzufüge [leftmargin], ändert sich die Farbe des Titeltextes nicht. Stimmt etwas mit meinem Code nicht?

MWE:

\documentclass{article}
\usepackage{titlesec,xcolor}

\begin{document}
\titleformat{\section}
{\normalfont\bfseries\color{blue}}
{\thesection.}
{1em}
{}
\section{my colored section}

\titleformat{\section}[leftmargin]% only the optional argument "leftmargin" added
{\normalfont\bfseries\color{blue}}
{\thesection.}
{1em}
{}
\section{The Color Unchanged}

\end{document}

Bildbeschreibung hier eingeben

Antwort1

Eine Problemumgehung: Setzen Sie den Farbbefehl in das 2. und 4. Argument.

\documentclass{article}
\usepackage{,xcolor, titlesec}

\begin{document}
\titleformat{\section}
{\normalfont\bfseries\color{blue}}
{\thesection.}
{1em}
{}
\section{my colored section}

\titleformat{\section}[leftmargin]% only the optional argument "leftmargin" added
{\normalfont\bfseries}
{\color{blue}\thesection.}
{1em}
{\color{blue}}
\section{The Color Unchanged}

\end{document} 

Bildbeschreibung hier eingeben

verwandte Informationen