gitextract_t47763fl/ ├── .conda_environment.yml ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs/ │ ├── Makefile │ ├── authors.rst │ ├── conf.py │ ├── contributing.rst │ ├── history.rst │ ├── index.rst │ ├── installation.rst │ ├── latexipy.rst │ ├── make.bat │ ├── modules.rst │ ├── readme.rst │ └── usage.rst ├── examples/ │ ├── __init__.py │ ├── example.tex │ ├── examples.py │ ├── generate.sh │ └── img/ │ ├── cos_no_latex.pgf │ ├── cos_with_latex.pgf │ ├── sin_no_latex.pgf │ ├── sin_with_latex.pgf │ ├── sincos_after_revert.pgf │ ├── sincos_big_font_permanent.pgf │ ├── sincos_big_font_temp.pgf │ ├── sincos_big_label_title.pgf │ ├── sincos_defaults.pgf │ ├── sincos_defaults_no_partial.pgf │ ├── sincos_no_latex.pgf │ ├── sincos_small.pgf │ ├── sincos_square.pgf │ ├── sincos_tall.pgf │ └── sincos_with_latex.pgf ├── latexipy/ │ ├── __init__.py │ └── _latexipy.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ └── test_latexipy.py ├── tox.ini └── travis_pypi_setup.py