├── .github └── workflows │ ├── ci.yml │ └── docker.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── compiled-paper.pdf ├── docker └── Dockerfile └── paper ├── Makefile ├── code └── example1.py ├── content.org ├── extract_body.py ├── figures └── icon.png ├── latexmkrc ├── loop-make.sh ├── org-files-to-tex.el ├── paper.bib └── paper.tex /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/README.md -------------------------------------------------------------------------------- /compiled-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/compiled-paper.pdf -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /paper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/Makefile -------------------------------------------------------------------------------- /paper/code/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/code/example1.py -------------------------------------------------------------------------------- /paper/content.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/content.org -------------------------------------------------------------------------------- /paper/extract_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/extract_body.py -------------------------------------------------------------------------------- /paper/figures/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/figures/icon.png -------------------------------------------------------------------------------- /paper/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/latexmkrc -------------------------------------------------------------------------------- /paper/loop-make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/loop-make.sh -------------------------------------------------------------------------------- /paper/org-files-to-tex.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/org-files-to-tex.el -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangohr/template-latex-paper-from-orgmode/HEAD/paper/paper.tex --------------------------------------------------------------------------------