Using Aspose.Total for Java you can easily convert TEX to XAML 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 XAML.
Java API to Convert TEX to XAML
- 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 XAML format using
save
method and set
Xaml
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 Xaml format
presentation.save("output.xaml", SaveFormat.Xaml);
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 XAML File with Predefined View Type via Java
After converting TEX to XAML, 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 Xaml format
presentation.save("output.xaml", SaveFormat.Xaml);
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 XAML File Format
XAML (Extensible Application Markup Language) is a declarative XML-based language developed by Microsoft that is used for initializing structured values and objects. XAML is used extensively in Microsofts WPF (Windows Presentation Foundation) technology to design and build advanced user interfaces.XAML can be used to create any kind of object, including UI elements such as buttons, text boxes, and media elements. XAML can also be used to create non-UI objects such as brushes and geometries.XAML is typically compiled into a binary format that can be executed by a XAML processor. The XAML processor can be a standalone application, such as Microsofts Expression Blend tool, or it can be built into another application, such as Microsofts Visual Studio IDE. When used in conjunction with WPF, XAML files are typically compiled into a binary format called BAML (Binary Application Markup Language). BAML is a more efficient format for storing and processing XAML-based UI elements.XAML files can also be stored in a text-based format called XML (Extensible Markup Language). XML is a more flexible format that can be edited with any text editor. However, XML-based XAML files are typically larger in size and can take longer to process than BAML-based XAML files.
Read More