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.
With Aspose.Slides for Python via .NET 24.2 release, Python developers can optimize their existing PowerPoint apps and develop new solutions for macOS ARM64/M1 systems.
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 macOS ARM64/M1 systems. 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 the Html5Options.notes_comments_layouting parameter of HTML5 export options to export presentations with comments, as shown 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.