-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 34ed361
Showing
186 changed files
with
304,421 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.ipynb linguist-vendored |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
*.nav | ||
*.snm | ||
*.dvi | ||
*.toc | ||
*.aux | ||
*.gz | ||
*.out | ||
*.log | ||
*.bbl | ||
*.blg | ||
*.log | ||
*.spl | ||
*~ | ||
*.spl | ||
*.zip | ||
*.acn | ||
*.glo | ||
*.ist | ||
*.epub | ||
*.glsdefs | ||
*.lot | ||
*.fls | ||
*.lof | ||
*.fdb_latexmk | ||
*.DS_Store | ||
*.bcf | ||
*.run.xml | ||
*.pyg | ||
|
||
__pycache__/ | ||
.ipynb_checkpoints/ | ||
data/benchmark/data/* | ||
docs/_minted-thesis | ||
pres/_minted-arfc-pres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
# 2023-dotson-prelim | ||
|
||
This repository holds my preliminary exam document. The style guide comes from the University of Illinois Urbana-Champaign Graduate College. A link to the resources may be found [here](https://grad.illinois.edu/thesis/format). | ||
|
||
# Compiling the prelim document | ||
|
||
## Windows | ||
The document style must be compiled using `biber`. Doing this from the command line is more reliable than modifying TeXworks or other editor (I have experienced issues with Windows blocking a biber.exe call from TeXworks). **Make sure your LaTeX installation is up-to-date.** | ||
|
||
```bash | ||
C:\Users\samgd\Research\2023-dotson-prelim\docs>pdflatex -shell-escape thesis.tex | ||
C:\Users\samgd\Research\2023-dotson-prelim\docs>biber thesis # This is not a typo. Do not include a file extension. | ||
C:\Users\samgd\Research\2023-dotson-prelim\docs>pdflatex -shell-escape thesis.tex | ||
C:\Users\samgd\Research\2023-dotson-prelim\docs>pdflatex -shell-escape thesis.tex | ||
``` | ||
|
||
## Linux | ||
|
||
```bash | ||
$ cd 2023-dotson-prelim/docs | ||
$ make | ||
``` | ||
|
||
|
||
## From the template repository | ||
### uiucthesis class | ||
|
||
A LaTeX package for formatting theses in the format required by the University of Illinois at Urbana-Champaign. | ||
|
||
#### Update Notes | ||
|
||
- 3.1a (Samuel G Dotson) | ||
* Adds prelim macro | ||
- 3.1 (Zachary J Weiner) | ||
* Format table of contents entries with titletoc, prepend "Chapter" and "Appendix" | ||
* Place appendices after references, returning to `\mainmatter` so that appendices are still numbered | ||
* Add copyright and licensing information | ||
- 3.0 (Zachary J Weiner) | ||
* Significant revision, obsolete options removed and source simplified | ||
- 2.25b (Stephen Mayhew) | ||
* Removed the Vita Section | ||
* Added a Makefile | ||
* Changed all dates from 2009 -> 2014 | ||
* Be careful when updating the date in the first line of uiucthesis2021.dtx! All numbers must be two digits, including month and day. |
Oops, something went wrong.