I have an equation with random integer coefficients. The structure is to demonstrate the distributive property.
{a, b, c, d} = RandomInteger[{1, 9}, 4];
Row[{TraditionalForm[a f[x] (b g[x] + c h[x])], " = ",TraditionalForm[Expand[a f[x] (b g[x] + c h[x])]]}]
I would like the parentheses surrounding the sum on the LHS to be slightly bigger to give is a more professional appearance. I've tried getting the inline Tex to work and I did find a discussion about using nudge right to do it. Is there a straightforward way to control the size of parentheses?

