FontSize of fraction after applying TableForm is small.
{k1 + (y1 + y2)/(x1 + x2), k2 + (y2 + y3)/(x2 + x3), k3 + (y1 + y3)/(x1 + x3)} // TableForm
I want the font size of the fraction to be the same as before applying TableForm.
A workaround may be possible, like changing font size of numerator and denominator (and the middle horizontal bar, because it became thinner). But I believe there is a straight way to do this.
The answer can suggest a way not using TableForm.
My question is actually a special case of the general question :
Can I arrange expressions the way I want (e.g. vertically, or table like,...) without any change of the size or shapes of expressions?
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
After getting a comment : Thank you!
Grid[Transpose[{{k1 + (y1 + y2)/(x1 + x2), k2 + (y2 + y3)/(x2 + x3),
k3 + (y1 + y3)/(x1 + x3)}}],
AllowScriptLevelChange -> False, Spacings -> {0, 1}]


AllowScriptLevelChange– there are many questions about this. – Domen Apr 12 '23 at 17:34Gridrather than aTableFormalways gives us more sophisticated control(more option, exact way)? – imida k Apr 12 '23 at 17:48