Aspose.TeX.Convert 24.6.0

dotnet tool install --global Aspose.TeX.Convert --version 24.6.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Aspose.TeX.Convert --version 24.6.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Aspose.TeX.Convert&version=24.6.0
nuke :add-package Aspose.TeX.Convert --version 24.6.0

Aspose.TeX Micro Apps

Aspose.TeX for .NET Micro Applications provides high-level APIs for converting TeX/LaTeX documents into various formats, facilitating easy integration into .NET applications.

Explore more about Aspose.TeX .NET API.

Aspose.TeX Convert Micro Application

This application enables efficient conversion of TeX/LaTeX documents into various formats.

Key Features
  • Supported Input Formats: TeX, LaTeX.
  • Supported Output Formats:
    • PDF (Portable Document Format);
    • XPS (XML Paper Specification);
    • PNG (Portable Network Graphics);
    • JPEG/JPG (Joint Photographic Experts Group);
    • BMP (Bitmap Image File);
    • TIFF/TIF (Tagged Image File Format);
    • SVG (Scalable Vector Graphics).
  • Can be used via the command line or integrated into your C# projects as a .NET 6.0/7.0 compatible API.
Licensing

While the Aspose.TeX Convert application itself is free to use, converting documents requires a valid Aspose.TeX license. You can purchase a license or use Aspose.TeX in trial mode for evaluation purposes.

System Requirements
  • .NET 6.0/7.0 on Windows, Linux, MacOs;
  • Aspose.TeX Convert application installed.
Installation

The Aspose.TeX Convert application can be installed either globally or locally, depending on your project's needs. It is recommended to use the local installation for project-specific use to avoid version conflicts.

Global Installation:

To install Aspose.TeX Convert globally on your machine, use the following command:

dotnet tool install --global Aspose.TeX.Convert

Specify the --version option if you need a specific version of the tool.

Local Installation:

For local installation within a specific project, first, navigate to your project's root directory. Then, execute the following commands:

  1. Create a tool-manifest if not already present:
dotnet new tool-manifest
  1. Install Aspose.TeX Convert locally:
dotnet tool install Aspose.TeX.Convert --local

Again, you can specify the --version option for a specific version.

Updating the Tool:

To update the Aspose.TeX Convert tool to the latest version, use the dotnet tool update command with either --global or --local, matching your installation type.

Uninstalling the Tool:

If you need to uninstall the tool, use the dotnet tool uninstall command with either --global or --local, depending on how the tool was installed.

Usage

Use from command line:

To convert documents using the command line, you can use the following parameters:

  • -i, --input [Required]: Path to the input TeX or LaTeX document.
    • Example: --input input.tex
  • -o, --output [Required]: Path for the converted document.
    • Example: --output output.pdf
  • -f, --format [Optional]: Output document format.
    • Supported formats: PDF, XPS, PNG, JPEG, BMP, TIFF, SVG.
    • Example: --format pdf
  • -l, --license [Optional]: Path to the Aspose.TeX .NET license file.
    • Example: --license path_to_license.lic
  • -v, --verbose [Optional]: Enable verbose output.
    • Example: --verbose
Aspose.TeX.Convert --input input.tex --output output.pdf --format pdf
Integration into C# Projects

The Aspose.TeX Convert application can also be integrated directly into your .NET projects using the command line, enabling programmatic access to TeX conversion capabilities within your C# code.

Adding the Converter to Your Project:

To add the Aspose.TeX Convert tool to your Visual Studio project, navigate to your project's root directory and execute the following command:

dotnet Aspose.TeX.Convert add

This command adds the Aspose.TeX Convert functionality directly into your project, allowing you to use the library's methods and properties through your code. This is particularly useful for developers looking to implement customized TeX conversion processes directly within their applications.

Use from code:

Once added, you can easily call the TeX conversion methods in your project. Here is a simple example of how to use the Aspose.TeX Convert in your code:

using Aspose.TeX.MicroApps.Convert;
using System.Threading.Tasks;

class Program
{
    static async Task Main(string[] args)
    {
        // Initialize convert options
        var options = new ConvertOptions
        {
            // Required: Specify the input document path
            InputDocument = "input.tex",
            
            // Required: Specify the output document path
            OutputFilePath = "output.pdf",
            
            // Optional: Specify the output format
            ToFormat = "pdf"
        };

        // Conditional: Apply license if you have one
        if (isLicensed)
        {
            options.LicenseFile = "path_to_license.lic";
        }

        // Execute the conversion task
        await ConvertTasks.Create(options).Execute();
    }
}
Documentation and Support

Comprehensive documentation is available on the Aspose.TeX Documentation page.
For questions, support, or feedback, please visit Aspose Forums.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
24.6.0 98 6/21/2024
24.5.0 110 5/31/2024