https://github.com/faroit/thesis
Ph.D. Thesis LaTeX Code
https://github.com/faroit/thesis
Last synced: about 1 year ago
JSON representation
Ph.D. Thesis LaTeX Code
- Host: GitHub
- URL: https://github.com/faroit/thesis
- Owner: faroit
- License: gpl-2.0
- Created: 2016-08-17T22:30:33.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-07T21:21:35.000Z (over 5 years ago)
- Last Synced: 2025-01-28T02:32:45.317Z (over 1 year ago)
- Language: TeX
- Homepage: https://opus4.kobv.de/opus4-fau/frontdoor/index/index/docId/13114
- Size: 51.9 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: COPYING
Awesome Lists containing this project
README
# Separation and Count Estimation for Audio Sources Overlapping in Time and Frequency
Ph.D. Thesis from Fabian-Robert Stöter
## References
* `references.bib`: Main references of all cited works. This will be rendered in the last chapter of the thesis.
* `ownref.bib`: References where I am the main/first author. This will be rendered in the introduction and also appear in references at the end of the thesis.
* `ownsideref.bib`: References where I am __not__ the main/first author. This will be rendered in the introduction and also appear in references at the end of the thesis.
* `owndata.bib`: Data and Software References where I am the main author. This will be rendered in the introduction and also appear in references at the end of the thesis.
## Create PDF
### Requirements
TexLive 2019
### Build Document
Run `make`.
### Create diff using git-latex diff
due to bugs in the git-latex diff's flatten, we need to manually create a flattened latex file:
```bash
python latex-flatten.py ClassicThesis.tex thesis_original.tex
git checkout XXXXXX
python latex-flatten.py ClassicThesis.tex thesis_revisionXXXXXX.tex
latexdiff thesis_original.tex thesis_revisionXXXXXX.tex > diff.tex
make diff.pdf
```