I adopted the following clever code from Mr. Wizard (see here ).
HoldForm[+##] & @@ RandomInteger[100, 2] I want to prepare a practising table of addition for my son.
Something like:
Table[Text[ Style[ToString[HoldForm[+##] & @@ RandomInteger[100, 2]] <> " = ", Italic, 20]], {100}] // Column[#, Left, Background -> {{LightGray, GrayLevel[.9]}}, Frame -> True, ItemSize -> 10] & However, I want the output to be "aligned". If the four first elements of the output is, for instance, 12+5=, 3+48=, 78+89=, and 7+9= I want them to be aligned as follows
12 + 5 = 3 + 48 = 78 + 89 = 7 + 9 = How is it possible to achieve this?
Thanks.


