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.
A new IMathParagraph.toLatex method is introduced in Aspose.Slides for Node.js via Java which allows seamless conversion of math text within your presentations to LaTeX format and offers extended compatibility. This code example showcases the method usage:
IMathParagraph.toLatex
var pres = new aspose.slides.Presentation(); var slide = pres.getSlides().get_Item(0); var shape = slide.getShapes().addMathShape(50, 50, 200, 200); var mathParagraph = shape.getTextFrame().getParagraphs().get_Item(0).getPortions().get_Item(0).getMathParagraph(); mathParagraph.add(new aspose.slides.MathematicalText("a").join("+").join(new aspose.slides.MathematicalText("b").join("=").join(new aspose.slides.MathematicalText("c")))); var mathLatex = mathParagraph.toLatex(); console.log(mathLatex);
Source*
In the latest version of the Node.js PowerPoint API, we have added the Html5Options.NotesCommentsLayouting export option. It empowers you to export presentations with comments in HTML5, helping with a comprehensive output for various use cases. Please check out the following coding sample to learn how to use this export option.
Html5Options.NotesCommentsLayouting
var pres = new aspose.slides.Presentation("test.pptx"); var notesCommentsLayoutingOptions = new aspose.slides.NotesCommentsLayoutingOptions(); notesCommentsLayoutingOptions.setNotesPosition(aspose.slides.NotesPositions.BottomTruncated); var html5Options = new aspose.slides.Html5Options(); html5Options.setNotesCommentsLayouting(notesCommentsLayoutingOptions); html5Options.setOutputPath("test_pptx"); pres.save("index.html", aspose.slides.SaveFormat.Html5, html5Options);
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for Node.js via Java 24.2 Release Notes.