Is it possible to handle source files in a Latex to PDF conversion? I’m using the following API command
response = api.PutTeXInStorageToPdfWithHttpInfo(pdfFilename, Path.Combine(blobFoldername, filenameToCovert), blobFoldername);
Where the file .tex file contains references to other files such as:
\includegraphics[width=\linewidth]{fig1.pdf}
I’ve tried including all of the source files in the same directory as the .tex file. Any other options, suggestions?