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.
Leverage the new IMathParagraph.toLatex() method in Aspose.Slides for Android via Java 24.2 to easily perform LaTeX conversion of math equations within your presentations.
IMathParagraph.toLatex()
Code Example:
Presentation pres = new Presentation(); try { ISlide slide = pres.getSlides().get_Item(0); IAutoShape shape = slide.getShapes().addMathShape(50, 50, 200, 200); IMathParagraph mathParagraph = ((MathPortion)shape.getTextFrame().getParagraphs().get_Item(0).getPortions().get_Item(0)).getMathParagraph(); mathParagraph.add(new MathematicalText("a").join("+").join(new MathematicalText("b").join("=").join(new MathematicalText("c")))); String mathLatex = mathParagraph.toLatex(); System.out.println(mathLatex); } finally { if (pres != null) pres.dispose(); }
Source*
The latest release of the PowerPoint document manipulation API helps improve clarity and precision in scientific presentations by utilizing the universal language of Latex.
You can seamlessly control comment and note layout when exporting presentations to HTML5 with the new Html5Options.NotesCommentsLayouting property.
Html5Options.NotesCommentsLayouting
Presentation pres = new Presentation("test.pptx"); try { NotesCommentsLayoutingOptions notesCommentsLayoutingOptions = new NotesCommentsLayoutingOptions(); notesCommentsLayoutingOptions.setNotesPosition(NotesPositions.BottomTruncated); Html5Options html5Options = new Html5Options(); html5Options.setNotesCommentsLayouting(notesCommentsLayoutingOptions); html5Options.setOutputPath("test_pptx"); pres.save("index.html", SaveFormat.Html5, html5Options); } finally { if (pres != null) pres.dispose(); }
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for Android via Java 24.2 Release Notes.