Skip to content

Instantly share code, notes, and snippets.

View aspose-com-gists's full-sized avatar

Aspose.com Gists aspose-com-gists

View GitHub Profile
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – External LaTeX Packages Examples
Last active November 3, 2025 13:44
Use external LaTeX packages from file system, ZIP archives, custom directories with .NET
Aspose.TeX for .NET – External LaTeX Packages Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Other Managing TeX Options Examples
Last active November 3, 2025 13:44
Manage TeX engine options: interaction modes, job names, date/time, packages, fonts with .NET
Aspose.TeX for .NET – Other Managing TeX Options Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Other Ways to Provide Main TeX Input Examples
Last active November 3, 2025 13:44
Alternative ways to provide main TeX input: memory streams and terminal with .NET
Aspose.TeX for .NET – Other Ways to Provide Main TeX Input Examples
Aspose.TeX for .NET – Convert LaTeX to PDF Examples
Aspose.TeX for .NET – Convert LaTeX to XPS Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Convert LaTeX to Image Examples
Last active October 23, 2025 12:06
Convert LaTeX to PNG, JPEG, TIFF, BMP, SVG with .NET
Aspose.TeX for .NET – Convert LaTeX to Image Examples
@aspose-com-gists
aspose-com-gists / convert-svg-code-to-png-in-python.md
Last active October 22, 2025 08:03
Convert SVG Code to PNG in Python using Aspose.SVG
@aspose-com-gists
aspose-com-gists / ltx-to-xps.py
Created October 21, 2025 21:39
Convert LaTeX to XPS in Python
from aspose.tex import *
from aspose.tex.io import *
from aspose.tex.presentation.xps import *
import aspose.tex as tex
from os import path
from datetime import datetime
from io import BytesIO
license_path = "license.lic"
# Apply Aspose.Tex license
@aspose-com-gists
aspose-com-gists / repair-latex-file.py
Created October 20, 2025 17:55
Repair LaTeX File in Python
from aspose.tex.features import *
import aspose.tex as tex
from aspose.tex.io import *
from os import path
# Apply Aspose.PSD license.
license_path = "license.lic"
license = tex.License()
license.set_license(license_path)
# Create repair options by instantiating an object of the LaTeXRepairerOptions class.
@aspose-com-gists
aspose-com-gists / convert-vsd-to-pdf-in-csharp.md
Last active October 17, 2025 17:05
Convert VSD to PDF in C# Using Aspose.Diagram for .NET