I am trying to find a solution, but actually I have failed, to use curly bracket (using \ccases) for the system symbol of three equations (or more), as for this example. If I adding the & I have much space,
\documentclass{article}
\usepackage[lite]{mtpro2}
\usepackage{mathtools}
\begin{document}
\[\ccases{
x&=R\sin\theta\cos\varphi\\
y&=R\sin\theta\sin\varphi\\
z&=R\cos\theta}
\]
\end{document}
While if I remove the symbol & I lose the vertical alignment of the sign =:
\documentclass{article}
\usepackage[lite]{mtpro2}
\usepackage{mathtools}
\begin{document}
\[\ccases{
x=R\sin\theta\cos\varphi\\
y=R\sin\theta\sin\varphi\\
z=R\cos\theta}
\]
\end{document}
How can I have the correct vertical alignment with the three = symbols without have additional spaces?
ADDENDUM: Here there is an image which compares the classic brace with the elegant curvy brace:
First guide mtpro2 page 12 and second guide mtpro2-2008/1/23 and possible related:




\ccasescome from? – Bernard Aug 26 '19 at 22:57mtpro2lite? – Bernard Aug 26 '19 at 23:02package which defines the\ccases`(presumably shorthand for "curly cases") command.. – Mico Aug 27 '19 at 09:06eqnarray(conjectured from the syntax for alignment and the spacing problem…) – Bernard Aug 27 '19 at 10:14