Can we define a style telling "put all arrows on the same transparency group as the path" ?
In the following example, I would like to redefine ephemeral style such that the blue and the red arrows look the same (with no visible overlapping between the end of the path and the arrow's head).
How can I do that?
\documentclass[varwidth,border=50]{standalone}
\usepackage{tikz}
\begin{document}
\tikzset{
ephemeral/.style = {opacity=.35}
}
\begin{tikzpicture}
\draw[ephemeral, ultra thick,-latex, blue] (0,0) -- (1,0);
\begin{scope}[opacity=.35, transparency group, yshift=-.5cm]
\draw[ultra thick,-latex, red] (0,0) -- (1,0);
\end{scope}
\end{tikzpicture}
\end{document}



\draw[ephemeral, ultra thick,-{.Latex}, blue] (0,.5) parabola (1,1.5);. And there is another problem, not only the TeXworks fails. Under Windows, Sumatra and the viewer of TikzEdt fails too. Chrome is ok for straight lines, like Acrobat. But strangely, for curved lines, Chrome and Acrobat fails in a different way. – Kpym Dec 19 '14 at 17:34transparency groupI think there are no general one. – Ignasi Dec 19 '14 at 18:10