├── cleanup ├── rmlatex │ └── rmlatex.py └── tmp_back │ └── tmp_back.py ├── filter ├── addacks │ └── addacks.py ├── addbiblio │ └── addbiblio.py ├── addrefline │ └── addrefline.py ├── addsidebar_index │ └── addsidebar_index.py ├── baselevel │ └── baselevel.py ├── heading2bold │ └── heading2bold.py ├── inject-publication │ ├── formatter.py │ ├── inject-publication.py │ ├── selector.py │ └── style │ │ ├── edinburghcv.py │ │ └── quick.py ├── inject-ref │ ├── formatter.py │ ├── inject-ref.py │ ├── selector.py │ └── style │ │ ├── __init__.py │ │ ├── apalike.py │ │ └── util.py ├── inject-student │ ├── formatter.py │ ├── inject-student.py │ └── selector.py ├── metapub │ ├── __init__.py │ ├── formatter.py │ ├── metapub.py │ ├── pandoc.py │ ├── test.md │ └── util.py ├── name2auth │ └── name2auth.py ├── paginatesects │ └── paginatesects.py ├── report-wordcount │ └── report-wordcount.py ├── singlelist │ └── singlelist.py ├── smallcaps │ └── smallcaps.py └── test │ └── test.py ├── lua-filter ├── linebreakbetweenparas.lua ├── notes-to-callout.lua ├── remove-presentation-markup.lua └── remove-tt.lua ├── postflight ├── deploy_pdf │ └── deploy_pdf.py ├── latexmk │ └── latexmk.py ├── open_pdf │ └── open_pdf.py └── pplatex │ └── pplatex.py ├── postprocess └── change-yaml-style │ └── change-yaml-style.py ├── preflight └── tmp_out │ └── tmp_out.py ├── readme.md ├── shared └── python │ └── panzertools.py ├── styles └── styles.yaml └── template ├── UoE-letter.latex ├── article.html ├── article.latex ├── braindead.latex ├── csl └── oxford-university-press-humsoc.csl ├── css └── momento-pandoc.css ├── img └── eulogo.pdf ├── mumford.latex ├── notes.latex ├── reference-doc └── article.docx └── revealjs.html /cleanup/rmlatex/rmlatex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/cleanup/rmlatex/rmlatex.py -------------------------------------------------------------------------------- /cleanup/tmp_back/tmp_back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/cleanup/tmp_back/tmp_back.py -------------------------------------------------------------------------------- /filter/addacks/addacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/addacks/addacks.py -------------------------------------------------------------------------------- /filter/addbiblio/addbiblio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/addbiblio/addbiblio.py -------------------------------------------------------------------------------- /filter/addrefline/addrefline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/addrefline/addrefline.py -------------------------------------------------------------------------------- /filter/addsidebar_index/addsidebar_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/addsidebar_index/addsidebar_index.py -------------------------------------------------------------------------------- /filter/baselevel/baselevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/baselevel/baselevel.py -------------------------------------------------------------------------------- /filter/heading2bold/heading2bold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/heading2bold/heading2bold.py -------------------------------------------------------------------------------- /filter/inject-publication/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-publication/formatter.py -------------------------------------------------------------------------------- /filter/inject-publication/inject-publication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-publication/inject-publication.py -------------------------------------------------------------------------------- /filter/inject-publication/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-publication/selector.py -------------------------------------------------------------------------------- /filter/inject-publication/style/edinburghcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-publication/style/edinburghcv.py -------------------------------------------------------------------------------- /filter/inject-publication/style/quick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-publication/style/quick.py -------------------------------------------------------------------------------- /filter/inject-ref/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-ref/formatter.py -------------------------------------------------------------------------------- /filter/inject-ref/inject-ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-ref/inject-ref.py -------------------------------------------------------------------------------- /filter/inject-ref/selector.py: -------------------------------------------------------------------------------- 1 | from pandocinject import Selector 2 | -------------------------------------------------------------------------------- /filter/inject-ref/style/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter/inject-ref/style/apalike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-ref/style/apalike.py -------------------------------------------------------------------------------- /filter/inject-ref/style/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-ref/style/util.py -------------------------------------------------------------------------------- /filter/inject-student/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-student/formatter.py -------------------------------------------------------------------------------- /filter/inject-student/inject-student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-student/inject-student.py -------------------------------------------------------------------------------- /filter/inject-student/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/inject-student/selector.py -------------------------------------------------------------------------------- /filter/metapub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter/metapub/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/metapub/formatter.py -------------------------------------------------------------------------------- /filter/metapub/metapub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/metapub/metapub.py -------------------------------------------------------------------------------- /filter/metapub/pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/metapub/pandoc.py -------------------------------------------------------------------------------- /filter/metapub/test.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filter/metapub/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/metapub/util.py -------------------------------------------------------------------------------- /filter/name2auth/name2auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/name2auth/name2auth.py -------------------------------------------------------------------------------- /filter/paginatesects/paginatesects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/paginatesects/paginatesects.py -------------------------------------------------------------------------------- /filter/report-wordcount/report-wordcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/report-wordcount/report-wordcount.py -------------------------------------------------------------------------------- /filter/singlelist/singlelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/singlelist/singlelist.py -------------------------------------------------------------------------------- /filter/smallcaps/smallcaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/smallcaps/smallcaps.py -------------------------------------------------------------------------------- /filter/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/filter/test/test.py -------------------------------------------------------------------------------- /lua-filter/linebreakbetweenparas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/lua-filter/linebreakbetweenparas.lua -------------------------------------------------------------------------------- /lua-filter/notes-to-callout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/lua-filter/notes-to-callout.lua -------------------------------------------------------------------------------- /lua-filter/remove-presentation-markup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/lua-filter/remove-presentation-markup.lua -------------------------------------------------------------------------------- /lua-filter/remove-tt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/lua-filter/remove-tt.lua -------------------------------------------------------------------------------- /postflight/deploy_pdf/deploy_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/postflight/deploy_pdf/deploy_pdf.py -------------------------------------------------------------------------------- /postflight/latexmk/latexmk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/postflight/latexmk/latexmk.py -------------------------------------------------------------------------------- /postflight/open_pdf/open_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/postflight/open_pdf/open_pdf.py -------------------------------------------------------------------------------- /postflight/pplatex/pplatex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/postflight/pplatex/pplatex.py -------------------------------------------------------------------------------- /postprocess/change-yaml-style/change-yaml-style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/postprocess/change-yaml-style/change-yaml-style.py -------------------------------------------------------------------------------- /preflight/tmp_out/tmp_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/preflight/tmp_out/tmp_out.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/readme.md -------------------------------------------------------------------------------- /shared/python/panzertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/shared/python/panzertools.py -------------------------------------------------------------------------------- /styles/styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/styles/styles.yaml -------------------------------------------------------------------------------- /template/UoE-letter.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/UoE-letter.latex -------------------------------------------------------------------------------- /template/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/article.html -------------------------------------------------------------------------------- /template/article.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/article.latex -------------------------------------------------------------------------------- /template/braindead.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/braindead.latex -------------------------------------------------------------------------------- /template/csl/oxford-university-press-humsoc.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/csl/oxford-university-press-humsoc.csl -------------------------------------------------------------------------------- /template/css/momento-pandoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/css/momento-pandoc.css -------------------------------------------------------------------------------- /template/img/eulogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/img/eulogo.pdf -------------------------------------------------------------------------------- /template/mumford.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/mumford.latex -------------------------------------------------------------------------------- /template/notes.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/notes.latex -------------------------------------------------------------------------------- /template/reference-doc/article.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/reference-doc/article.docx -------------------------------------------------------------------------------- /template/revealjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msprev/dot-panzer/HEAD/template/revealjs.html --------------------------------------------------------------------------------