1
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?

enter image description here(1)

enter image description here(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}

HyperGroups
  • 8,619
  • 1
  • 26
  • 63

1 Answers1

1

I think you may be after this good discussion on curly braces.

There is also a Piecewise command, but you seem to be more interested in typesetting.

You can then use the TeXForm command for conversion. Also consider using the Export command if you're comfortable just using an image in your other document.

TransferOrbit
  • 3,547
  • 13
  • 26
  • The problem is how to convert the equations to Piecewise form. Not by hand (typesetting)... I hate to typeset too much. – HyperGroups Jun 23 '13 at 05:02
  • see this https://mathematica.stackexchange.com/questions/202719/how-to-convert-output-from-reduce-into-a-piecewise-function/212196#212196 – AsukaMinato Jan 31 '20 at 10:46