├── .gitignore ├── DEPENDS.txt ├── LICENSE.txt ├── README.md ├── amd64masm.def ├── contrib ├── Author_template │ ├── TEMPLATE+README.md │ ├── TEMPLATE+content.tex │ ├── TEMPLATE+references.bib │ ├── TEMPLATE+system.tex │ └── TEMPLATE.tex ├── bachelor_template │ ├── TEMPLATE+README.md │ ├── TEMPLATE-names.tex │ ├── TEMPLATE.tex │ └── common │ │ ├── TEMPLATE+bibliography.bib │ │ ├── TEMPLATE+document.tex │ │ ├── TEMPLATE+preface.tex │ │ ├── TEMPLATE+style.tex │ │ ├── TEMPLATE+system.tex │ │ └── TEMPLATE+trailer.tex ├── master_template │ ├── TEMPLATE+README.md │ ├── TEMPLATE+abstract.tex │ ├── TEMPLATE+acknowledgment.tex │ ├── TEMPLATE+appendix.tex │ ├── TEMPLATE+thesis.bib │ ├── TEMPLATE-names.tex │ └── TEMPLATE.tex ├── phd_template │ ├── TEMPLATE+README.md │ ├── TEMPLATE+abstract.tex │ ├── TEMPLATE+acknowledgments.tex │ ├── TEMPLATE+appendix.tex │ ├── TEMPLATE+content.tex │ ├── TEMPLATE+frontmatter.tex │ ├── TEMPLATE+publications.tex │ ├── TEMPLATE+thesis.bib │ ├── TEMPLATE+zusammenfassung.tex │ ├── TEMPLATE-abstract.tex │ ├── TEMPLATE-names.tex │ ├── TEMPLATE-statement.tex │ ├── TEMPLATE-zusammenfassung.tex │ └── TEMPLATE.tex ├── publish.sh └── thesis │ ├── bootstrap.css │ ├── data.js │ ├── date.format.js │ ├── index.html │ ├── jquery-1.7.min.js │ └── protovis.min.js ├── install.sh ├── javascript.def ├── lua.def ├── makefile ├── newspeak.def ├── smalltalk.def ├── swa-abstract.sty ├── swa-acronyms.sty ├── swa-bibliography.sty ├── swa-collate.sty ├── swa-document-koma.sty ├── swa-document-llncs.sty ├── swa-document-scrbook.sty ├── swa-document.sty ├── swa-font-garamond.sty ├── swa-font-lmodern.sty ├── swa-font-palatino.sty ├── swa-font.sty ├── swa-graphics.sty ├── swa-language.sty ├── swa-listings.sty ├── swa-logo-hpi.tex ├── swa-logo-uni.tex ├── swa-platform.sty ├── swa-statement.sty ├── swathesis.cls ├── swth ├── swth.1 ├── swth.info ├── swth.pdf ├── swth.tex ├── tdsify.sh ├── title-hpi-swa-phd.def └── title-hpi-swa.def /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/.gitignore -------------------------------------------------------------------------------- /DEPENDS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/DEPENDS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/README.md -------------------------------------------------------------------------------- /amd64masm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/amd64masm.def -------------------------------------------------------------------------------- /contrib/Author_template/TEMPLATE+README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/Author_template/TEMPLATE+README.md -------------------------------------------------------------------------------- /contrib/Author_template/TEMPLATE+content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/Author_template/TEMPLATE+content.tex -------------------------------------------------------------------------------- /contrib/Author_template/TEMPLATE+references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/Author_template/TEMPLATE+references.bib -------------------------------------------------------------------------------- /contrib/Author_template/TEMPLATE+system.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/Author_template/TEMPLATE+system.tex -------------------------------------------------------------------------------- /contrib/Author_template/TEMPLATE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/Author_template/TEMPLATE.tex -------------------------------------------------------------------------------- /contrib/bachelor_template/TEMPLATE+README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/TEMPLATE+README.md -------------------------------------------------------------------------------- /contrib/bachelor_template/TEMPLATE-names.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/TEMPLATE-names.tex -------------------------------------------------------------------------------- /contrib/bachelor_template/TEMPLATE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/TEMPLATE.tex -------------------------------------------------------------------------------- /contrib/bachelor_template/common/TEMPLATE+bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/common/TEMPLATE+bibliography.bib -------------------------------------------------------------------------------- /contrib/bachelor_template/common/TEMPLATE+document.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/common/TEMPLATE+document.tex -------------------------------------------------------------------------------- /contrib/bachelor_template/common/TEMPLATE+preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/common/TEMPLATE+preface.tex -------------------------------------------------------------------------------- /contrib/bachelor_template/common/TEMPLATE+style.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/common/TEMPLATE+style.tex -------------------------------------------------------------------------------- /contrib/bachelor_template/common/TEMPLATE+system.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/common/TEMPLATE+system.tex -------------------------------------------------------------------------------- /contrib/bachelor_template/common/TEMPLATE+trailer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/bachelor_template/common/TEMPLATE+trailer.tex -------------------------------------------------------------------------------- /contrib/master_template/TEMPLATE+README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/master_template/TEMPLATE+README.md -------------------------------------------------------------------------------- /contrib/master_template/TEMPLATE+abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/master_template/TEMPLATE+abstract.tex -------------------------------------------------------------------------------- /contrib/master_template/TEMPLATE+acknowledgment.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/master_template/TEMPLATE+acknowledgment.tex -------------------------------------------------------------------------------- /contrib/master_template/TEMPLATE+appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/master_template/TEMPLATE+appendix.tex -------------------------------------------------------------------------------- /contrib/master_template/TEMPLATE+thesis.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/master_template/TEMPLATE+thesis.bib -------------------------------------------------------------------------------- /contrib/master_template/TEMPLATE-names.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/master_template/TEMPLATE-names.tex -------------------------------------------------------------------------------- /contrib/master_template/TEMPLATE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/master_template/TEMPLATE.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+README.md -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+abstract.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+acknowledgments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+acknowledgments.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+appendix.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+content.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+frontmatter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+frontmatter.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+publications.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+publications.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+thesis.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+thesis.bib -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE+zusammenfassung.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE+zusammenfassung.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE-abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE-abstract.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE-names.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE-names.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE-statement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE-statement.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE-zusammenfassung.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE-zusammenfassung.tex -------------------------------------------------------------------------------- /contrib/phd_template/TEMPLATE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/phd_template/TEMPLATE.tex -------------------------------------------------------------------------------- /contrib/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/publish.sh -------------------------------------------------------------------------------- /contrib/thesis/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/thesis/bootstrap.css -------------------------------------------------------------------------------- /contrib/thesis/data.js: -------------------------------------------------------------------------------- 1 | ; 2 | -------------------------------------------------------------------------------- /contrib/thesis/date.format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/thesis/date.format.js -------------------------------------------------------------------------------- /contrib/thesis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/thesis/index.html -------------------------------------------------------------------------------- /contrib/thesis/jquery-1.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/thesis/jquery-1.7.min.js -------------------------------------------------------------------------------- /contrib/thesis/protovis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/contrib/thesis/protovis.min.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/install.sh -------------------------------------------------------------------------------- /javascript.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/javascript.def -------------------------------------------------------------------------------- /lua.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/lua.def -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/makefile -------------------------------------------------------------------------------- /newspeak.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/newspeak.def -------------------------------------------------------------------------------- /smalltalk.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/smalltalk.def -------------------------------------------------------------------------------- /swa-abstract.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-abstract.sty -------------------------------------------------------------------------------- /swa-acronyms.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-acronyms.sty -------------------------------------------------------------------------------- /swa-bibliography.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-bibliography.sty -------------------------------------------------------------------------------- /swa-collate.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-collate.sty -------------------------------------------------------------------------------- /swa-document-koma.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-document-koma.sty -------------------------------------------------------------------------------- /swa-document-llncs.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-document-llncs.sty -------------------------------------------------------------------------------- /swa-document-scrbook.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-document-scrbook.sty -------------------------------------------------------------------------------- /swa-document.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-document.sty -------------------------------------------------------------------------------- /swa-font-garamond.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-font-garamond.sty -------------------------------------------------------------------------------- /swa-font-lmodern.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-font-lmodern.sty -------------------------------------------------------------------------------- /swa-font-palatino.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-font-palatino.sty -------------------------------------------------------------------------------- /swa-font.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-font.sty -------------------------------------------------------------------------------- /swa-graphics.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-graphics.sty -------------------------------------------------------------------------------- /swa-language.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-language.sty -------------------------------------------------------------------------------- /swa-listings.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-listings.sty -------------------------------------------------------------------------------- /swa-logo-hpi.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-logo-hpi.tex -------------------------------------------------------------------------------- /swa-logo-uni.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-logo-uni.tex -------------------------------------------------------------------------------- /swa-platform.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-platform.sty -------------------------------------------------------------------------------- /swa-statement.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swa-statement.sty -------------------------------------------------------------------------------- /swathesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swathesis.cls -------------------------------------------------------------------------------- /swth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swth -------------------------------------------------------------------------------- /swth.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swth.1 -------------------------------------------------------------------------------- /swth.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swth.info -------------------------------------------------------------------------------- /swth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swth.pdf -------------------------------------------------------------------------------- /swth.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/swth.tex -------------------------------------------------------------------------------- /tdsify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/tdsify.sh -------------------------------------------------------------------------------- /title-hpi-swa-phd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/title-hpi-swa-phd.def -------------------------------------------------------------------------------- /title-hpi-swa.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krono/swathesis/HEAD/title-hpi-swa.def --------------------------------------------------------------------------------