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.
C# developers can upgrade to Aspose.Slides for .NET 24.2 (MSI) and effortlessly process PowerPoint presentations. This update introduces exciting new features alongside valuable bug fixes.
This C# code example demonstrates the conversion from math equations to LaTex format using the newly added IMathParagraph.ToLatex method:
IMathParagraph.ToLatex
using (var pres = new Presentation()) { var slide = pres.Slides[0]; IAutoShape shape = slide.Shapes.AddMathShape(50, 50, 200, 200); IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph; mathParagraph.Add(new MathematicalText("a").Join("+").Join(new MathematicalText("b").Join("=").Join(new MathematicalText("c")))); string mathLatex = mathParagraph.ToLatex(); Console.WriteLine(mathLatex); }
Source*
You can upgrade your PowerPoint conversion apps with the ability to add comments while converting from PowerPoint to HTML5 using Html5Options.NotesCommentsLayouting. The following code snippet showcases how it is done:
Html5Options.NotesCommentsLayouting
using (Presentation pres = new Presentation("test.pptx")) { pres.Save("index.html", SaveFormat.Html5, new Html5Options() { OutputPath = "test_pptx", NotesCommentsLayouting = new NotesCommentsLayoutingOptions() { NotesPosition = NotesPositions.BottomTruncated } }); }
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for .NET 24.2 Release Notes.