This is the source code of my doctoral dissertation "Applied Implicit Computational Complexity" (Rusch, 2025).
I am not aware of any other open source doctoral dissertations from Augusta University. I hope that making this resource public will be useful to future candidates. The dissertation template is also open source. This repository uses automated workflows, for example to compile and build an artifact container, that may be of interest to the technically skilled candidates.
The timeline and process of my dissertation and defense is documented here.
The content and formatting requirements1 of doctoral dissertations.
- Dissertation template — LaTeX/markdown template for Augusta University graduate dissertations
- Augusta University Electronic Theses and Dissertations (ETD) — guide by Augusta University Libraries
- Thesis/Dissertation Preparation Booklet v.2024 — Augusta University formatting requirements
- Preparing Your Manuscript for Submission — guide by ProQuest
.
├─ 📁 .github : Automated workflows
├─ 📁 code : Code listings
├─ 📁 fonts : Custom fonts
├─ 📁 latex : LaTeX commands
├─ 📁 pdf : Static files
├─ 📁 pictures : TikZ drawings
├─ 📁 references : Bibs and indices
├─ 📁 text : Dissertation text content
├─ args.tex : Template configuration
├─ content.tex : Chapter organization
├─ main.tex : The base template
├─ readme.txt : Artifact readme
└─ * : Other configuration files, license, etc.
The compilation follows roughly this dependency schema.
┌──── args.tex ◂──────── latex/*
main.tex ◂─┼──── content.tex ◂──┬── text ◂────────┬── pdf/* ◂─── pictures/*
└──── fonts/* └── references/* └── code/*
Time: 5-10 min • Prerequisites: LaTeX
At repository root, compile the dissertation by running:
make full
The output is a file main.pdf.
Time: 10-15 min • Prerequisites: Docker
Setup container
Pull and launch the latest container (on some machines you may need sudo):
docker pull --platform=linux/amd64 ghcr.io/nkrusch/dissertation:artifact
docker run --name dimage -it --rm ghcr.io/nkrusch/dissertation:artifact
Compile
In container, compile the dissertation by running:
make full
View Document
On host, in a separate terminal, copy the compiled document to the host:
docker cp dimage:/usr/dissertation/main.pdf .
This dissertation can be found in all the following dissertation databases.
HAL Theses is an open archive of PhD thesis and habilitation theses.
Zenodo is an archival repository for all kinds of scholarly and research outputs, including theses. There is also a community for research deposits affiliated with Augusta University.
Scholarly Commons is Augusta University's institutional repository. All AU dissertations appear in Scholarly Commons. Scholarly Commons does not require authentication, though some items are restricted.
- Theses and Dissertations 2020-2029 on Scholarly Commons
- Computer and Cyber Sciences Theses and Dissertations on Scholarly Commons
Augusta University uses ProQuest as the official publisher and archival database of doctoral dissertations. However, ProQuest is a subscription-based service. It minimally requires authentication before a user is allowed to access full length documents. The database access further depends on the authenticating institution and what collections the institution subscribes to.
Warning
ProQuest functionality and access is strongly restricted to users without a suitable institutional subscription.
If you have sufficient permissions, the following query finds all Augusta University doctoral dissertations in computer science that have been published on ProQuest:
DG(Ph.D) AND SCH(1907) AND DEP(Computer and Cyber Sciences)
Please acknowledge references to this dissertation, or its artifact, with the following citation.
@phdthesis{rusch2025,
title = {Applied Implicit Computational Complexity},
author = {Neea Rusch},
year = 2025,
month = 9,
school = {Augusta University},
address = {Augusta, Georgia, United States},
doi = {10.5281/zenodo.17148449},
type = {PhD thesis}
}Footnotes
-
More precisely, these are recommendations. ↩