gitextract_sv1rvnjz/ ├── .devcontainer/ │ ├── README.md │ ├── devcontainer.json │ └── image/ │ ├── Dockerfile │ ├── README.md │ ├── config/ │ │ ├── .wgetrc │ │ └── texlive.profile │ └── texlive.sh ├── .gitattributes ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── .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/ │ │ ├── abstract.tex │ │ ├── authorship_declaration.tex │ │ ├── colophon.tex │ │ ├── preface.tex │ │ └── task.tex │ ├── frontmatter.tex │ ├── mainmatter/ │ │ ├── base-features.tex │ │ ├── code-listings.tex │ │ ├── floats.tex │ │ └── usage.tex │ └── mainmatter.tex ├── cookbook.tex ├── data/ │ ├── README.md │ ├── diffuser.csv │ ├── matlab2tikz_table_example.tex │ └── matlab2tikz_table_example_data.csv ├── images/ │ ├── bitmaps/ │ │ └── README.md │ └── vectors/ │ └── README.md ├── lib/ │ ├── README.md │ └── example.lua ├── pandoc/ │ ├── README.md │ ├── defaults.yaml │ ├── metadata.yaml │ └── promote-headers.lua └── tests/ ├── Makefile ├── README.md ├── config.yml ├── pyproject.toml └── tests/ ├── __init__.py ├── conftest.py ├── test_pdfs.py ├── test_self.py └── utils.py