├── .circleci ├── config.yml └── deploy-ghpages.sh ├── .editorconfig ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md └── _config.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo.tex ├── release.bat ├── scientific-thesis-cover.sty └── tests ├── TEST_english_oneside.tex ├── TEST_english_oneside_no_number.tex ├── TEST_english_twoside.tex ├── TEST_german_oneside.tex └── TEST_german_twoside.tex /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/deploy-ghpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/.circleci/deploy-ghpages.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/.github/_config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/README.md -------------------------------------------------------------------------------- /demo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/demo.tex -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/release.bat -------------------------------------------------------------------------------- /scientific-thesis-cover.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/scientific-thesis-cover.sty -------------------------------------------------------------------------------- /tests/TEST_english_oneside.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/tests/TEST_english_oneside.tex -------------------------------------------------------------------------------- /tests/TEST_english_oneside_no_number.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/tests/TEST_english_oneside_no_number.tex -------------------------------------------------------------------------------- /tests/TEST_english_twoside.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/tests/TEST_english_twoside.tex -------------------------------------------------------------------------------- /tests/TEST_german_oneside.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/tests/TEST_german_oneside.tex -------------------------------------------------------------------------------- /tests/TEST_german_twoside.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-cover/HEAD/tests/TEST_german_twoside.tex --------------------------------------------------------------------------------