python-pptx icon indicating copy to clipboard operation
python-pptx copied to clipboard

feature request: maths formula or Latex support

Open httassadar opened this issue 11 years ago • 8 comments

Writing maths is needed very frequently in scientific background. Powerpoint has built-in formula support, is it possible to have access to that?

At the moment, when I want some formula, I'll generate a picture and add_picture

r = requests.get( 'http://latex.codecogs.com/png.latex?\dpi{900} %s' % formula )
tmpfname = r"H:\tmpplots\pptx_formula.png"
f = open( tmpfname, 'wb' )
f.write( r.content )
f.close()

This is OK for occasional displayed maths, but for frequent use of Greeks, sub/super-scripts etc, I have to manually edit the file afterwards.

httassadar avatar Oct 24 '14 14:10 httassadar