pgfplots: スタイルのブールキーが機能しない

pgfplots: スタイルのブールキーが機能しない

Bool を挿入しようとしましたTitle=true|false:

\pgfplotsset{
%/pgfplots/.cd, % no effect
Title/.is choice, 
Title/.style={title={A title.}}, 
}    

なぜTitleTitle=trueおよびTitle=falseが機能せず、両方ともタイトルを取得するのでしょうか?
何を改善する必要がありますか?

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

\documentclass[border=3.14pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}

\pgfplotsset{
%/pgfplots/.cd, % no effect
Title/.is choice, 
Title/.style={title={A title.}}, 
}    

\begin{tikzpicture}
\begin{axis}[Title=true]
\addplot[] {x} node[pos=0.5]{Has a title. :)};;
\end{axis}
\end{tikzpicture}

\begin{tikzpicture}
\begin{axis}[Title=false]
\addplot[red] {x} node[pos=0.5]{Has a title too. :(};
\end{axis}
\end{tikzpicture}

答え1

.is choice各選択肢に対してキーを定義し、可能な選択肢のそれぞれをtrueサブキーfalseで指定するハンドラーを使用できます。

\pgfplotsset{
  Title/.is choice, 
  Title/true/.style={title={A title.}},
  Title/false/.style={}, 
} 

キーをブール値に制限したい場合は、パッケージでetoolboxハンドラーを使用できます.is if

\pgfplotsset{Title/.is if,
  Title/.code={\ifbool{#1}{\pgfplotsset{title={A title}}}{}}
}

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

関連情報