I would like to be able to alias a PGF key to another name, is this possible and if it is, how do I do this?
For example if I have defined a key as:
\pgfkeys{path/
color/.store in=\color@cx
}
I would like have the ability to let "color" to "somecolor" would it also be possible to alias keys that have been defined using .style?
color=somecolorit would be stored in\color@cx. Which one do you want to access later with alias? There is/.linkkey but I don't know if that's what you are after. – percusse Apr 09 '12 at 10:27color->color@cxandsomecolor->color@cx. – yannisl Apr 09 '12 at 10:42/.code. For example,\pgfkeys{setmycolor/.code={\color@cx=#1}}\/pgfkeys{color/.style={setmycolor=blue}}\pgfkeys{somecolor/.style={setmycolor=red}}. – percusse Apr 09 '12 at 10:51