├── .github ├── DEVELOPER.md ├── actions │ ├── latexmk │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── README.md │ │ └── action.yml │ └── pdfcheck │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ ├── conftest.py │ │ ├── docs.sh │ │ ├── docs │ │ ├── Makefile │ │ ├── make.bat │ │ └── source │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── modules.rst │ │ │ ├── pdftest.rst │ │ │ └── pdftest.tests.rst │ │ ├── entry.py │ │ ├── lint.sh │ │ ├── pdfcheck │ │ ├── __init__.py │ │ ├── core.py │ │ ├── helper.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ ├── font.py │ │ │ ├── margins.py │ │ │ └── title_page.py │ │ └── titlepage.py │ │ ├── pytest.ini │ │ └── requirements.txt └── workflows │ └── ci.yml ├── .gitignore ├── .latex.yml ├── README.md ├── check.sh ├── dissertation_template_latex.tex ├── dissertation_template_latex_sample.tex ├── latexmk.sh └── src ├── asudis.bst └── sample ├── abstract.tex ├── acknowledgments.tex ├── antidorcas.jpg ├── appendix.tex ├── chapter.tex ├── dedication.tex └── library.bib /.github/DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/DEVELOPER.md -------------------------------------------------------------------------------- /.github/actions/latexmk/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.github/actions/latexmk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/latexmk/Dockerfile -------------------------------------------------------------------------------- /.github/actions/latexmk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/latexmk/README.md -------------------------------------------------------------------------------- /.github/actions/latexmk/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/latexmk/action.yml -------------------------------------------------------------------------------- /.github/actions/pdfcheck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/.gitignore -------------------------------------------------------------------------------- /.github/actions/pdfcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/Dockerfile -------------------------------------------------------------------------------- /.github/actions/pdfcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/README.md -------------------------------------------------------------------------------- /.github/actions/pdfcheck/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/action.yml -------------------------------------------------------------------------------- /.github/actions/pdfcheck/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/conftest.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs.sh -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs/Makefile -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs/make.bat -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs/source/conf.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs/source/index.rst -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs/source/modules.rst -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs/source/pdftest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs/source/pdftest.rst -------------------------------------------------------------------------------- /.github/actions/pdfcheck/docs/source/pdftest.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/docs/source/pdftest.tests.rst -------------------------------------------------------------------------------- /.github/actions/pdfcheck/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/entry.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/lint.sh -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pdfcheck/core.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pdfcheck/helper.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/tests/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pdfcheck/tests/basic.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/tests/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pdfcheck/tests/font.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/tests/margins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pdfcheck/tests/margins.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/tests/title_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pdfcheck/tests/title_page.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pdfcheck/titlepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pdfcheck/titlepage.py -------------------------------------------------------------------------------- /.github/actions/pdfcheck/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/pytest.ini -------------------------------------------------------------------------------- /.github/actions/pdfcheck/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/actions/pdfcheck/requirements.txt -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /.latex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/.latex.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/README.md -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/check.sh -------------------------------------------------------------------------------- /dissertation_template_latex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/dissertation_template_latex.tex -------------------------------------------------------------------------------- /dissertation_template_latex_sample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/dissertation_template_latex_sample.tex -------------------------------------------------------------------------------- /latexmk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/latexmk.sh -------------------------------------------------------------------------------- /src/asudis.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/asudis.bst -------------------------------------------------------------------------------- /src/sample/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/sample/abstract.tex -------------------------------------------------------------------------------- /src/sample/acknowledgments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/sample/acknowledgments.tex -------------------------------------------------------------------------------- /src/sample/antidorcas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/sample/antidorcas.jpg -------------------------------------------------------------------------------- /src/sample/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/sample/appendix.tex -------------------------------------------------------------------------------- /src/sample/chapter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/sample/chapter.tex -------------------------------------------------------------------------------- /src/sample/dedication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/sample/dedication.tex -------------------------------------------------------------------------------- /src/sample/library.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarenSidonius/ASU-Dissertation-Template/HEAD/src/sample/library.bib --------------------------------------------------------------------------------