I am using TikZ with the rectangle split multipart node (detailed on pp 450ff in the PGF 2.1 documentation). I need to influence the text opacity of all parts, but whatever I try seems to work only on the text (=first) part of the multipart node:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary{shapes.multipart}
\begin{document}
\begin{tikzpicture}
\node[rectangle split, rectangle split parts=2, draw, text opacity=0.5]{%
transparent :-)
\nodepart{two}
not transparent :-(
};
\end{tikzpicture}
\end{document}
results in:

I have also tried \nodepart[text opacity=0.5]{two} and even Heiko Oberdiek's transparent package to set the text transparency manually, which, however does not seem to play together with PGF. There also seem to be no every ... styles for the additional parts of the rectangle split node.
I must be overlooking something.



every ...style for the second part is defined byevery two node part/.style={...}(see p.179). However that also doesn't help. Seems like a bug to me. – Caramdir May 27 '12 at 17:50