I’m attempting to convert .tex files (LaTEX) to PDF using the following code:
LatexLoadOptions latexOptions = new LatexLoadOptions();
Aspose.Pdf.Document doc = new Aspose.Pdf.Document(this.tempInputFile, latexOptions);
doc.Save(this.tempOutputFile);
However no matter how many different .tex files I try the resulting PDF is always blank.
Those same tex files open up fine in other programs that deal with .tex files.
Am I missing a step?
My version of Aspose.Pdf is 10.3.0.0.
Thanks.