The picture I load is my target:
This is my code in mathematica
StringTemplate["``Ratio is ``,``Ratio is ``,``Ratio is ``,"][
Sequence @@
Flatten@Transpose[{{Style["red", Red, Bold],
Style["green", Green, Bold], Style["blue", Blue, Bold]}, {0.1,
0.2, 0.3}}]]
But the result is
What's problem in my code?Can Anybody give some advice?





InsertionFunction -> (ToString[#, TraditionalForm] &)– Greg Hurst Dec 01 '15 at 18:03Row. – Greg Hurst Dec 01 '15 at 18:05InsertionFunction -> (ToString[Style@@#, TraditionalForm] &), then you can omit theStylefrom each list item. – george2079 Dec 01 '15 at 20:05