Typesetting text in TeX view()
Is there a standard way to typeset TeX formulas together with normal text via view()?
So far I've been using
tex_string = "\hbox{- stationary points: }"
for pt in stats:
tex_string += latex(pt)
tex_string += ", "
view(tex_string)
where stats
is a list of some points (defined with formulas).