Following I have a simple animation with a variable displayed inside the plot. The significant digits of the variable changes as you run the animation which results in a smaller jitter on the text's initial position. It might be small but I find it very distracting when the animation is saved as a video.
Animate[Plot[Sin[a*t], {t, 0, 2}, PlotRange -> {0, 2}, Epilog -> Text[Style[Row@{"a value = ", a}, Bold, Blue, 15], {1, 1.5}]], {a, 0, 10, 0.1}] Is there a way to get rid of the jitter in the text display. I believe by forcing the initial position of the text to be a fixed value we should be able to get rid of the jitter, but I don't know how to do it.
Thanks,
