├── .gitignore ├── Makefile ├── README.md ├── arxiv.tex ├── author-acm.tex ├── author-ieee.tex ├── author-usenix.tex ├── macros.tex ├── paper.bib ├── paper.tex ├── sections ├── abstract.tex ├── appendix.tex ├── background.tex ├── conclusion.tex ├── design.tex ├── discussion.tex ├── evaluation.tex ├── implementation.tex ├── introduction.tex └── related.tex └── style ├── ACM-Reference-Format.bst ├── IEEEtran.cls ├── acmart.cls ├── acmart.dtx ├── acmart.ins ├── clrscode3e.sty ├── cryptocode.sty ├── dingbat.sty ├── fancybox.sty ├── head-acm.tex ├── head-common.tex ├── head-ieee.tex ├── head-plain.tex ├── head-sosp.tex ├── head-usenix.tex ├── ltxmdf.cls ├── makecell.sty ├── mdframed.sty ├── needspace.sty ├── sig-alternate-10pt.cls ├── sigplanconf-eurosys.cls ├── sigplanconf.cls ├── todonotes.sty ├── usenix-compact.sty └── usenix.sty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/README.md -------------------------------------------------------------------------------- /arxiv.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/arxiv.tex -------------------------------------------------------------------------------- /author-acm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/author-acm.tex -------------------------------------------------------------------------------- /author-ieee.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/author-ieee.tex -------------------------------------------------------------------------------- /author-usenix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/author-usenix.tex -------------------------------------------------------------------------------- /macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/macros.tex -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/paper.tex -------------------------------------------------------------------------------- /sections/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/abstract.tex -------------------------------------------------------------------------------- /sections/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/appendix.tex -------------------------------------------------------------------------------- /sections/background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/background.tex -------------------------------------------------------------------------------- /sections/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/conclusion.tex -------------------------------------------------------------------------------- /sections/design.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/design.tex -------------------------------------------------------------------------------- /sections/discussion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/discussion.tex -------------------------------------------------------------------------------- /sections/evaluation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/evaluation.tex -------------------------------------------------------------------------------- /sections/implementation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/implementation.tex -------------------------------------------------------------------------------- /sections/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/introduction.tex -------------------------------------------------------------------------------- /sections/related.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/sections/related.tex -------------------------------------------------------------------------------- /style/ACM-Reference-Format.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/ACM-Reference-Format.bst -------------------------------------------------------------------------------- /style/IEEEtran.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/IEEEtran.cls -------------------------------------------------------------------------------- /style/acmart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/acmart.cls -------------------------------------------------------------------------------- /style/acmart.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/acmart.dtx -------------------------------------------------------------------------------- /style/acmart.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/acmart.ins -------------------------------------------------------------------------------- /style/clrscode3e.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/clrscode3e.sty -------------------------------------------------------------------------------- /style/cryptocode.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/cryptocode.sty -------------------------------------------------------------------------------- /style/dingbat.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/dingbat.sty -------------------------------------------------------------------------------- /style/fancybox.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/fancybox.sty -------------------------------------------------------------------------------- /style/head-acm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/head-acm.tex -------------------------------------------------------------------------------- /style/head-common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/head-common.tex -------------------------------------------------------------------------------- /style/head-ieee.tex: -------------------------------------------------------------------------------- 1 | \documentclass[conference]{style/IEEEtran} 2 | -------------------------------------------------------------------------------- /style/head-plain.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/head-plain.tex -------------------------------------------------------------------------------- /style/head-sosp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/head-sosp.tex -------------------------------------------------------------------------------- /style/head-usenix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/head-usenix.tex -------------------------------------------------------------------------------- /style/ltxmdf.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/ltxmdf.cls -------------------------------------------------------------------------------- /style/makecell.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/makecell.sty -------------------------------------------------------------------------------- /style/mdframed.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/mdframed.sty -------------------------------------------------------------------------------- /style/needspace.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/needspace.sty -------------------------------------------------------------------------------- /style/sig-alternate-10pt.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/sig-alternate-10pt.cls -------------------------------------------------------------------------------- /style/sigplanconf-eurosys.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/sigplanconf-eurosys.cls -------------------------------------------------------------------------------- /style/sigplanconf.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/sigplanconf.cls -------------------------------------------------------------------------------- /style/todonotes.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/todonotes.sty -------------------------------------------------------------------------------- /style/usenix-compact.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/usenix-compact.sty -------------------------------------------------------------------------------- /style/usenix.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryscheng/paper-template/HEAD/style/usenix.sty --------------------------------------------------------------------------------