├── .gitignore ├── README.md ├── example └── paper.tex ├── paper ├── formatting.md ├── general.md ├── introduction.md ├── math.md ├── related_work.md └── results.md ├── rebuttal ├── general.md └── process.md ├── review └── review.md ├── statement └── research.md └── workflow.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/README.md -------------------------------------------------------------------------------- /example/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/example/paper.tex -------------------------------------------------------------------------------- /paper/formatting.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paper/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/paper/general.md -------------------------------------------------------------------------------- /paper/introduction.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paper/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/paper/math.md -------------------------------------------------------------------------------- /paper/related_work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/paper/related_work.md -------------------------------------------------------------------------------- /paper/results.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rebuttal/general.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rebuttal/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/rebuttal/process.md -------------------------------------------------------------------------------- /review/review.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /statement/research.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srush/prof8/HEAD/workflow.md --------------------------------------------------------------------------------