Question: Change the setting order of the '+' sign befor '-'

Hello, 
I have an simple exmple of expresion : 

restart;
v1 := sin(c)*sin(a)(a - b);
                  v1 := sin(a)(-b + a) sin(c)

v2 := sin(c1)*sin(a1)(-a + b);
                 v2 := sin(a1)(-a + b) sin(c1)

sort(v1);
                      sin(c) sin(a)(a - b)

sort(v2);
                    sin(c1) sin(a1)(-a + b)


what i want  is :  sort(v2); --->     sin(c1) sin(a1)(b-a)

That mean i want the "+" sign comme alwase first

Merci

Please Wait...