equations={{2 u,2,1+t,1}=={a c,a b+c,a+b,1},{u,t,0,1}=={c d,c+b d,b+d,1}};
Thread/@equations//TraditionalForm
equations was typed to do some Solve
How to get the following TraditionalForm
I typed(I hate typing directly too much) the following equations by hand to show the result expected.
Saving equations to .tex also could get beautiful appearance.
I'd like the equations become beautiful in Mathematica or Tex( Row/Column seems will not preserve the effect after converting to Tex).
So how to convert equations to (1) or (2) both in Notebook and TeXForm?
(1)
(2)
as @chris mentioned in the comment, this is one good look, so problem is to convert equations to Piecewise in this way.
f[x_] = Piecewise@{{Sin[x], x < 0}, {x, x >= 0 && x < 1}, {x^2, x >= 1}}
f[x]//TeXForm
\begin{cases} \sin (x) & x<0 \\ x & x\geq 0\land x<1 \\ x^2 & x\geq 1 \end{cases}
f[x_] = Piecewise@{{Sin[x], x < 0}, {x, x >= 0 && x < 1}, {x^2, x >= 1}}would takef[x]//TeXForm? – chris Jun 01 '13 at 19:52f[x]was not created byPiecewisedirectly, but fromequations– HyperGroups Jun 23 '13 at 01:52