Using Aspose.Total for Java you can easily convert TEX to POTX within any Java J2SE, J2EE, J2ME application. Firstly, by using Aspose.PDF for Java , you can export TEX to PPTX. After that, by using Aspose.Slides for Java PowerPoint Processing API, you can convert PPTX to POTX.
Java API to Convert TEX to POTX
- Open TEX file using Document class
- Convert TEX to PPTX by using save method
- Load PPTX document by using Presentation class
- Save the document to POTX format using
save
method and set
Potx
as SaveFormat
Get Started with Java File Format APIs
You can easily use Aspose.Total for Java directly from a Maven based project and include Aspose.PDF for Java and Aspose.Slides for Java in your pom.xml.
Alternatively, you can get a ZIP file from downloads .
// load TEX file with an instance of Document class
Document document = new Document("template.tex");
// save TEX as PPTX format
document.save("PptxOutput.pptx", SaveFormat.Pptx);
// instantiate a Presentation object that represents a PPTX file
Presentation presentation = new Presentation("PptxOutput.pptx");
// save the presentation as Potx format
presentation.save("output.potx", SaveFormat.Potx);
Open Encrypted TEX File via Java
While loading TEX file format, your document might be password protected. Aspose.PDF for Java allows you open encrypted documents as well. In order to open the encrypted file, you can initialize new instance of the Document class and pass filename and password as arguments.
// open TEX document
Document doc = new Document("input.tex", "Your@Password");
// save TEX as PPTX format
document.save("PptxOutput.pptx", SaveFormat.Pptx);
Save POTX File with Predefined View Type via Java
After converting TEX to POTX, you can also add predefined view type for your presentation. Aspose.Slides for Java provides a facility to set the view type for the generated presentation when it is opened in PowerPoint through the ViewProperties class. The setLastView property is used to set the view type by using the ViewType enumerator.
// instantiate a Presentation object that represents a PPTX file
Presentation presentation = new Presentation("PptxOutput.pptx");
// set view type
presentation.getViewProperties().setLastView((byte) ViewType.SlideMasterView);
// save the presentation as Potx format
presentation.save("output.potx", SaveFormat.Potx);
Explore TEX Conversion Options with Java
What is TEX File Format
A TEX file is a plain text file that contains the source code of a LaTeX document. LaTeX is a typesetting system used to create professional-looking documents. It is most commonly used to create papers for academic journals and to typeset books.TEX files are saved in the same directory as the LaTeX document and have a .tex file extension. They can be opened and edited with any text editor, but are typically viewed and compiled using a LaTeX editor, such as TeXnicCenter or Texmaker. When a TEX file is compiled, it is converted into a PDF or DVI file, which can be viewed with a PDF viewer, such as Adobe Reader, or a DVI viewer, such as Yap.
Read MoreWhat is POTX File Format
A POTX file is a PowerPoint Open XML Template file. It is a ZIP compressed XML file used by Microsoft PowerPoint to store slide designs. The POTX file format is used to save slide masters and layouts.POTX files can be opened by Microsoft PowerPoint and other presentation software that supports the PowerPoint Open XML format. They can also be opened by text editors such as Microsoft Word and Notepad++.Microsoft PowerPoint templates are pre-designed slide layouts that you can use to create presentations. Templates can contain slide masters, layouts, theme colors, theme fonts, theme effects, background styles, and slide design elements. You can use templates to create both new presentations and to modify existing presentations. When you open a template, it is copied to your hard drive and opened as a new, untitled presentation. The template file is not changed. You can save the new presentation as either a PowerPoint presentation (PPTX) or a PowerPoint template (POTX).
Read More