├── .gitignore ├── README.md ├── convert_pdf.py └── pdftolatex ├── latex.py ├── pdf.py ├── segment_pdf.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaykanigicherla/pdftolatex/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaykanigicherla/pdftolatex/HEAD/README.md -------------------------------------------------------------------------------- /convert_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaykanigicherla/pdftolatex/HEAD/convert_pdf.py -------------------------------------------------------------------------------- /pdftolatex/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaykanigicherla/pdftolatex/HEAD/pdftolatex/latex.py -------------------------------------------------------------------------------- /pdftolatex/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaykanigicherla/pdftolatex/HEAD/pdftolatex/pdf.py -------------------------------------------------------------------------------- /pdftolatex/segment_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaykanigicherla/pdftolatex/HEAD/pdftolatex/segment_pdf.py -------------------------------------------------------------------------------- /pdftolatex/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaykanigicherla/pdftolatex/HEAD/pdftolatex/utils.py --------------------------------------------------------------------------------