Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Enhance your PowerPoint processing solutions on Linux with the latest features and improved API functionality offered by Aspose.Slides for Python via .NET version 24.2.
Html5Options.notes_comments_layouting
PptxReadException
With the addition of the IMathParagraph.to_latex() method, it is easier for developers to convert the math equations to LaTeX format on the Linux platform. Please refer to the following Python coding sample to learn how to do it:
IMathParagraph.to_latex()
import aspose.slides as slides import aspose.slides.mathtext as math with slides.Presentation() as pres: slide = pres.slides[0] shape = slide.shapes.add_math_shape(50, 50, 200, 200) math_paragraph = shape.text_frame.paragraphs[0].portions[0].math_paragraph math_paragraph.add(math.MathematicalText("a").join("+").join(math.MathematicalText("b").join("=").join(math.MathematicalText("c")))) math_latex = math_paragraph.to_latex() print(math_latex)
Source*
Developers can utilize Html5Options.notes_comments_layouting to export presentations to HTML5 format with comments, as demonstrated in this Python code example:
import aspose.slides as slides with slides.Presentation("test.pptx") as pres: notes_comments_layouting = slides.export.NotesCommentsLayoutingOptions() notes_comments_layouting.notes_position = slides.export.NotesPositions.BOTTOM_TRUNCATED html5_options = slides.export.Html5Options() html5_options.output_path = "test_pptx" html5_options.notes_comments_layouting = notes_comments_layouting pres.save("index.html", slides.export.SaveFormat.HTML5, html5_options)
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for Python via .NET 24.2 Release Notes.