scanny / python-pptx

Create Open XML PowerPoint documents in Python
MIT License
2.36k stars 511 forks source link

feature request: maths formula or Latex support #126

Open httassadar opened 9 years ago

httassadar commented 9 years ago

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.

nilswagner commented 8 years ago

+1

nhkhai commented 3 years ago

+1