python-pptx
python-pptx copied to clipboard
feature request: maths formula or Latex support
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.