1

I am using python 3.5.2 and ubuntu linux 16.04.

I am trying to convert latex files to pdf - extension .tex/.latex.

I have tried using linux builtin soffice command and it didn't wenT well. Also looked at [PyLaTex][1] library and it seems that it convert pdf to latex but not latex to pdf.

How can i convert a LaTex file to a PDF file?

Montoya
  • 121

1 Answers1

1

Thanks to @JPi using pdflatex worked.

Usage:

Installation -

sudo apt install texlive-latex-base

At the cmd -

pdflatex sample.tex 
Montoya
  • 121