├── .devcontainer ├── README.md ├── devcontainer.json └── image │ ├── Dockerfile │ ├── README.md │ ├── config │ ├── .wgetrc │ └── texlive.profile │ └── texlive.sh ├── .latexmkrc ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── acp.cls ├── bib ├── README.md ├── bibliography.bib └── glossaries │ ├── abbreviations.bib │ ├── constants.bib │ ├── index │ ├── names.bib │ └── terms.bib │ └── symbols │ ├── greek.bib │ ├── other.bib │ ├── roman.bib │ └── subscripts.bib ├── chapters ├── README.md ├── backmatter.tex ├── frontmatter.tex ├── frontmatter │ ├── abstract.tex │ ├── authorship_declaration.tex │ ├── colophon.tex │ ├── preface.tex │ └── task.tex ├── mainmatter.tex └── mainmatter │ ├── base-features.tex │ ├── code-listings.tex │ ├── floats.tex │ └── usage.tex ├── cookbook.tex ├── data ├── README.md ├── diffuser.csv ├── matlab2tikz_table_example.tex └── matlab2tikz_table_example_data.csv ├── images ├── bitmaps │ ├── README.md │ ├── field.jpg │ ├── readme │ │ ├── backref.png │ │ ├── chem.png │ │ ├── code.png │ │ ├── font-shapes.png │ │ ├── language.png │ │ ├── math-macros.png │ │ ├── math.png │ │ ├── plot-compute.png │ │ ├── plot-csv.png │ │ ├── tables.png │ │ ├── tikz-annotations.png │ │ ├── tikz-diagram.png │ │ └── tikz-libraries.png │ ├── svg_tikz_example.png │ └── svg_tikz_example_debug.png └── vectors │ ├── README.md │ ├── compressor_impeller_isometric.svg │ ├── compressor_rotating_stall.svg │ ├── gas_volume.svg │ ├── gitlab │ └── pdf-git-logo.svg │ ├── logos │ └── matlab_simulink │ │ ├── matlab_object_box.svg │ │ ├── matlab_struct.svg │ │ ├── matlab_table.svg │ │ ├── simulink_algebraic_constraint.svg │ │ ├── simulink_base_workspace.svg │ │ ├── simulink_configuration.svg │ │ ├── simulink_data_dictionary.svg │ │ ├── simulink_library.svg │ │ ├── simulink_library_model.svg │ │ ├── simulink_log_data.svg │ │ ├── simulink_lut.svg │ │ ├── simulink_model.svg │ │ ├── simulink_model_workspace.svg │ │ ├── simulink_referenced_model.svg │ │ └── simulink_step_block.svg │ └── rotor_tip_clearance.svg ├── lib ├── README.md └── example.lua ├── pandoc ├── README.md ├── defaults.yaml ├── metadata.yaml └── promote-headers.lua └── tests ├── Makefile ├── README.md ├── config.yml ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── test_pdfs.py ├── test_self.py └── utils.py /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.devcontainer/image/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.devcontainer/image/README.md -------------------------------------------------------------------------------- /.devcontainer/image/config/.wgetrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.devcontainer/image/config/.wgetrc -------------------------------------------------------------------------------- /.devcontainer/image/config/texlive.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.devcontainer/image/config/texlive.profile -------------------------------------------------------------------------------- /.devcontainer/image/texlive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.devcontainer/image/texlive.sh -------------------------------------------------------------------------------- /.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.latexmkrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /acp.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/acp.cls -------------------------------------------------------------------------------- /bib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/README.md -------------------------------------------------------------------------------- /bib/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/bibliography.bib -------------------------------------------------------------------------------- /bib/glossaries/abbreviations.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/abbreviations.bib -------------------------------------------------------------------------------- /bib/glossaries/constants.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/constants.bib -------------------------------------------------------------------------------- /bib/glossaries/index/names.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/index/names.bib -------------------------------------------------------------------------------- /bib/glossaries/index/terms.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/index/terms.bib -------------------------------------------------------------------------------- /bib/glossaries/symbols/greek.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/symbols/greek.bib -------------------------------------------------------------------------------- /bib/glossaries/symbols/other.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/symbols/other.bib -------------------------------------------------------------------------------- /bib/glossaries/symbols/roman.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/symbols/roman.bib -------------------------------------------------------------------------------- /bib/glossaries/symbols/subscripts.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/bib/glossaries/symbols/subscripts.bib -------------------------------------------------------------------------------- /chapters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/README.md -------------------------------------------------------------------------------- /chapters/backmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/backmatter.tex -------------------------------------------------------------------------------- /chapters/frontmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/frontmatter.tex -------------------------------------------------------------------------------- /chapters/frontmatter/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/frontmatter/abstract.tex -------------------------------------------------------------------------------- /chapters/frontmatter/authorship_declaration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/frontmatter/authorship_declaration.tex -------------------------------------------------------------------------------- /chapters/frontmatter/colophon.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/frontmatter/colophon.tex -------------------------------------------------------------------------------- /chapters/frontmatter/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/frontmatter/preface.tex -------------------------------------------------------------------------------- /chapters/frontmatter/task.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/frontmatter/task.tex -------------------------------------------------------------------------------- /chapters/mainmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/mainmatter.tex -------------------------------------------------------------------------------- /chapters/mainmatter/base-features.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/mainmatter/base-features.tex -------------------------------------------------------------------------------- /chapters/mainmatter/code-listings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/mainmatter/code-listings.tex -------------------------------------------------------------------------------- /chapters/mainmatter/floats.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/mainmatter/floats.tex -------------------------------------------------------------------------------- /chapters/mainmatter/usage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/chapters/mainmatter/usage.tex -------------------------------------------------------------------------------- /cookbook.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/cookbook.tex -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/data/README.md -------------------------------------------------------------------------------- /data/diffuser.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/data/diffuser.csv -------------------------------------------------------------------------------- /data/matlab2tikz_table_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/data/matlab2tikz_table_example.tex -------------------------------------------------------------------------------- /data/matlab2tikz_table_example_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/data/matlab2tikz_table_example_data.csv -------------------------------------------------------------------------------- /images/bitmaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/README.md -------------------------------------------------------------------------------- /images/bitmaps/field.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/field.jpg -------------------------------------------------------------------------------- /images/bitmaps/readme/backref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/backref.png -------------------------------------------------------------------------------- /images/bitmaps/readme/chem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/chem.png -------------------------------------------------------------------------------- /images/bitmaps/readme/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/code.png -------------------------------------------------------------------------------- /images/bitmaps/readme/font-shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/font-shapes.png -------------------------------------------------------------------------------- /images/bitmaps/readme/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/language.png -------------------------------------------------------------------------------- /images/bitmaps/readme/math-macros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/math-macros.png -------------------------------------------------------------------------------- /images/bitmaps/readme/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/math.png -------------------------------------------------------------------------------- /images/bitmaps/readme/plot-compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/plot-compute.png -------------------------------------------------------------------------------- /images/bitmaps/readme/plot-csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/plot-csv.png -------------------------------------------------------------------------------- /images/bitmaps/readme/tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/tables.png -------------------------------------------------------------------------------- /images/bitmaps/readme/tikz-annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/tikz-annotations.png -------------------------------------------------------------------------------- /images/bitmaps/readme/tikz-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/tikz-diagram.png -------------------------------------------------------------------------------- /images/bitmaps/readme/tikz-libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/readme/tikz-libraries.png -------------------------------------------------------------------------------- /images/bitmaps/svg_tikz_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/svg_tikz_example.png -------------------------------------------------------------------------------- /images/bitmaps/svg_tikz_example_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/bitmaps/svg_tikz_example_debug.png -------------------------------------------------------------------------------- /images/vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/README.md -------------------------------------------------------------------------------- /images/vectors/compressor_impeller_isometric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/compressor_impeller_isometric.svg -------------------------------------------------------------------------------- /images/vectors/compressor_rotating_stall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/compressor_rotating_stall.svg -------------------------------------------------------------------------------- /images/vectors/gas_volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/gas_volume.svg -------------------------------------------------------------------------------- /images/vectors/gitlab/pdf-git-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/gitlab/pdf-git-logo.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/matlab_object_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/matlab_object_box.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/matlab_struct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/matlab_struct.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/matlab_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/matlab_table.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_algebraic_constraint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_algebraic_constraint.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_base_workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_base_workspace.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_configuration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_configuration.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_data_dictionary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_data_dictionary.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_library.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_library_model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_library_model.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_log_data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_log_data.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_lut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_lut.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_model.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_model_workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_model_workspace.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_referenced_model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_referenced_model.svg -------------------------------------------------------------------------------- /images/vectors/logos/matlab_simulink/simulink_step_block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/logos/matlab_simulink/simulink_step_block.svg -------------------------------------------------------------------------------- /images/vectors/rotor_tip_clearance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/images/vectors/rotor_tip_clearance.svg -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/lib/example.lua -------------------------------------------------------------------------------- /pandoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/pandoc/README.md -------------------------------------------------------------------------------- /pandoc/defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/pandoc/defaults.yaml -------------------------------------------------------------------------------- /pandoc/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/pandoc/metadata.yaml -------------------------------------------------------------------------------- /pandoc/promote-headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/pandoc/promote-headers.lua -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/config.yml -------------------------------------------------------------------------------- /tests/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/poetry.lock -------------------------------------------------------------------------------- /tests/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/pyproject.toml -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/tests/__init__.py -------------------------------------------------------------------------------- /tests/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/tests/conftest.py -------------------------------------------------------------------------------- /tests/tests/test_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/tests/test_pdfs.py -------------------------------------------------------------------------------- /tests/tests/test_self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/tests/test_self.py -------------------------------------------------------------------------------- /tests/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexpovel/latex-cookbook/HEAD/tests/tests/utils.py --------------------------------------------------------------------------------