色付きのセクションタイトルは、titlesec の [leftmargin] オプションで失敗する

色付きのセクションタイトルは、titlesec の [leftmargin] オプションで失敗する

セクションタイトルに色を付けたいのですが、\titleformatパッケージからtitlesec設定すれば問題ありません。

しかし、オプション引数を追加すると[leftmargin]、タイトルテキストの色が変更されません。コードに何か問題がありますか?

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}

ここに画像の説明を入力してください

答え1

回避策: 2 番目と 4 番目の引数に colour コマンドを配置します。

\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} 

ここに画像の説明を入力してください

関連情報