Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
samgdotson committed Jul 29, 2024
0 parents commit 34ed361
Show file tree
Hide file tree
Showing 186 changed files with 304,421 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.ipynb linguist-vendored
34 changes: 34 additions & 0 deletions .gitignore
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
45 changes: 45 additions & 0 deletions README.md
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.
Loading

0 comments on commit 34ed361

Please sign in to comment.