Bool を挿入しようとしましたTitle=true|false
:
\pgfplotsset{
%/pgfplots/.cd, % no effect
Title/.is choice,
Title/.style={title={A title.}},
}
なぜTitle
、 Title=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}}}{}}
}