I'd like to overlay a scientific form number on a ListPlot at a particular position.
Simply using Text[ToString@value, {xpos,ypos}] separates the exponent from the number and increases the font size. I found several posts about exponential notation for axes labels etc but I've not found one for this. I think one way would be to somehow convert the ScientificForm object into a Graphics object, then I could place it anywhere.
I think this must be a duplicate question as it seems so fundamental but I'm clearly searching for the wrong expressions!

Insetdoes not need to be aGraphics. – Oleksandr R. Aug 10 '15 at 17:58Epilog -> Inset[Style[ScientificForm[N@value], Red, FontSize -> 14], Scaled[{xpos, ypos}]]to have control over the color, font size, positions, etc. of the text you want overlaid. – MarcoB Aug 10 '15 at 18:06Row. – m_goldberg Aug 11 '15 at 01:35