My objective is a Python program which ultimately creates a PDF.
Presently, my program takes in a .csv file and creates a .tex file. Using cygwin, I can take a .tex file and convert it to .pdf in this manner:
$ latex example.tex && dvipdf example.dvi example.pdf
[LaTEX is an open-source computer typesetting language. The first part of the command generates a .dvi from the .tex. "dvipdf" converts the .dvi to a .pdf]
So is there a good, simple way of doing this? Thanks.
~Jesse, Houston TX
Presently, my program takes in a .csv file and creates a .tex file. Using cygwin, I can take a .tex file and convert it to .pdf in this manner:
$ latex example.tex && dvipdf example.dvi example.pdf
[LaTEX is an open-source computer typesetting language. The first part of the command generates a .dvi from the .tex. "dvipdf" converts the .dvi to a .pdf]
So is there a good, simple way of doing this? Thanks.
~Jesse, Houston TX
Comment