Browse our Products

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.

 

Aspose.TeX pour .Net 22.3

Download  Support Forum 

File Details

  • Téléchargements :
  • 2
  • Taille du fichier :
  • 67.9 MB
  • Posted By:
  • kolod
  • Vues :
  • 9
  • Date d'ajout :
  • : 3 weeks ago [3/23/2022]

File Details

Prise en charge de la conversion TeX en SVG

Un support a été ajouté pour convertir TeX au format SVG.

Rendu de formules mathématiques TeX en SVG

La prise en charge a été implémentée pour le rendu des formules mathématiques basées sur TeX au format SVG. Voici un exemple C# simple pour restituer la formule mathématique en SVG à l’aide de l’API :

/ Create rendering options.
MathRendererOptions options = new SvgMathRendererOptions();
// Specify the preamble.
options.Preamble = @"\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{color}";
// Specify the scaling factor 300%.
options.Scale = 3000;
// Specify the foreground color.
options.TextColor = System.Drawing.Color.Black;
// Specify the background color.
options.BackgroundColor = System.Drawing.Color.White;
// Specify the output stream for the log file.
options.LogStream = new MemoryStream();
// Specify whether to show the terminal output on the console or not.
options.ShowTerminal = true;

// The variable in which the dimensions of the resulting image will be written.
System.Drawing.SizeF size = new System.Drawing.SizeF();
// Create the output stream for the formula image.
using (Stream stream = System.IO.File.Open(
    Path.Combine(RunExamples.OutputDirectory, "math-formula.svg"), FileMode.Create))
{
    new SvgMathRenderer().Render(@"\begin{equation*}
e^x = x^{\color{red}0} + x^{\color{red}1} + \frac{x^{\color{red}2}}{2} + \frac{x^{\color{red}3}}{6} + \cdots = \sum_{n\geq 0} \frac{x^{\color{red}n}}{n!}
\end{equation*}", stream, options, out size);
}

// Show other results.
System.Console.Out.WriteLine(options.ErrorReport);
System.Console.Out.WriteLine();
System.Console.Out.WriteLine("Size: " + size);

Prise en charge des graphiques PS/EPS et XPS/OXPS

Ajout de la prise en charge de l’inclusion de graphiques dans les formats PS (PostScript), EPS (Encapsulated PostScript), XPS (XML Paper Specification) et OXPS (Open XML Paper Specification).

Prise en charge du paquet tikz

Cette version de l’API offre la prise en charge du package tikz qui peut être utilisé pour créer des éléments graphiques complexes dans LaTeX.

Pour une liste complète des fonctionnalités, améliorations et corrections de bogues de cette version, veuillez consulter Aspose.TeX for .NET 22.3 Release Notes.

 Français