├── .github └── workflows │ └── main.yml ├── .gitignore ├── ACM-Reference-Format-author-year.csl ├── LICENSE ├── README.md ├── STATUS.md ├── acmart-primary ├── .gitignore ├── ACM-Reference-Format.bst ├── Makefile ├── README ├── acm-jdslogo.png ├── acmart-tagged.cls ├── acmart.bib ├── acmart.dtx ├── acmart.ins ├── acmauthoryear.bbx ├── acmauthoryear.cbx ├── acmdatamodel.dbx ├── acmnumeric.bbx ├── acmnumeric.cbx └── samples │ ├── abbrev.bib │ ├── acmengage.dtx │ ├── sample-acmsmall-tagged-luamml-mathml.html │ ├── sample-base.bib │ ├── sample-franklin.png │ ├── samples.dtx │ ├── samples.ins │ ├── sampleteaser.pdf │ └── software.bib ├── acmartMeasurements.graffle ├── diff.pdf ├── flake.lock ├── flake.nix ├── fonts ├── InconsolataN-Bold.otf ├── InconsolataN-Regular.otf ├── Inconsolatazi4-Bold.otf ├── Inconsolatazi4-Regular.otf ├── LibertinusKeyboard-Regular.otf ├── LibertinusMath-Regular.otf ├── LibertinusMono-Regular.otf ├── LibertinusSans-Bold.otf ├── LibertinusSans-Italic.otf ├── LibertinusSans-Regular.otf ├── LibertinusSerif-Bold.otf ├── LibertinusSerif-BoldItalic.otf ├── LibertinusSerif-Italic.otf ├── LibertinusSerif-Regular.otf ├── LibertinusSerif-Semibold.otf ├── LibertinusSerif-SemiboldItalic.otf ├── LibertinusSerifDisplay-Regular.otf ├── LibertinusSerifInitials-Regular.otf ├── LinBiolinum_K.otf ├── LinBiolinum_R.otf ├── LinBiolinum_RB.otf ├── LinBiolinum_RBO.otf ├── LinBiolinum_RI.otf ├── LinLibertine_DR.otf ├── LinLibertine_I.otf ├── LinLibertine_M.otf ├── LinLibertine_MB.otf ├── LinLibertine_MBO.otf ├── LinLibertine_MO.otf ├── LinLibertine_R.otf ├── LinLibertine_RB.otf ├── LinLibertine_RBI.otf ├── LinLibertine_RI.otf ├── LinLibertine_RZ.otf ├── LinLibertine_RZI.otf ├── latinmodern-math.otf ├── lmmono10-italic.otf ├── lmmono10-regular.otf ├── lmmonocaps10-oblique.otf ├── lmmonocaps10-regular.otf ├── lmmonolt10-bold.otf ├── lmmonolt10-boldoblique.otf ├── lmmonolt10-oblique.otf └── lmmonolt10-regular.otf ├── justfile ├── sample-descend-pldi-paper ├── .gitignore ├── ACM-Reference-Format.bst ├── acmart.cls ├── acmauthoryear.bbx ├── acmauthoryear.cbx ├── acmdatamodel.dbx ├── acmnumeric.bbx ├── acmnumeric.cbx ├── bib.bib ├── img │ ├── Upsweap.pdf │ ├── plot.pdf │ └── sssp.pdf ├── listings-cuda.sty ├── listings-descend.sty ├── listings-rust.sty ├── macros.tex ├── main.pdf └── main.tex ├── sample-typst-acmsmall.pdf ├── sample-typst-acmsmall.typ ├── sample-typst-descend-pldi.pdf ├── sample-typst-descend-pldi.typ └── template.typ /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/.gitignore -------------------------------------------------------------------------------- /ACM-Reference-Format-author-year.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/ACM-Reference-Format-author-year.csl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/README.md -------------------------------------------------------------------------------- /STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/STATUS.md -------------------------------------------------------------------------------- /acmart-primary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/.gitignore -------------------------------------------------------------------------------- /acmart-primary/ACM-Reference-Format.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/ACM-Reference-Format.bst -------------------------------------------------------------------------------- /acmart-primary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/Makefile -------------------------------------------------------------------------------- /acmart-primary/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/README -------------------------------------------------------------------------------- /acmart-primary/acm-jdslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acm-jdslogo.png -------------------------------------------------------------------------------- /acmart-primary/acmart-tagged.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmart-tagged.cls -------------------------------------------------------------------------------- /acmart-primary/acmart.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmart.bib -------------------------------------------------------------------------------- /acmart-primary/acmart.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmart.dtx -------------------------------------------------------------------------------- /acmart-primary/acmart.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmart.ins -------------------------------------------------------------------------------- /acmart-primary/acmauthoryear.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmauthoryear.bbx -------------------------------------------------------------------------------- /acmart-primary/acmauthoryear.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmauthoryear.cbx -------------------------------------------------------------------------------- /acmart-primary/acmdatamodel.dbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmdatamodel.dbx -------------------------------------------------------------------------------- /acmart-primary/acmnumeric.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmnumeric.bbx -------------------------------------------------------------------------------- /acmart-primary/acmnumeric.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/acmnumeric.cbx -------------------------------------------------------------------------------- /acmart-primary/samples/abbrev.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/abbrev.bib -------------------------------------------------------------------------------- /acmart-primary/samples/acmengage.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/acmengage.dtx -------------------------------------------------------------------------------- /acmart-primary/samples/sample-acmsmall-tagged-luamml-mathml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/sample-acmsmall-tagged-luamml-mathml.html -------------------------------------------------------------------------------- /acmart-primary/samples/sample-base.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/sample-base.bib -------------------------------------------------------------------------------- /acmart-primary/samples/sample-franklin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/sample-franklin.png -------------------------------------------------------------------------------- /acmart-primary/samples/samples.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/samples.dtx -------------------------------------------------------------------------------- /acmart-primary/samples/samples.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/samples.ins -------------------------------------------------------------------------------- /acmart-primary/samples/sampleteaser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/sampleteaser.pdf -------------------------------------------------------------------------------- /acmart-primary/samples/software.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmart-primary/samples/software.bib -------------------------------------------------------------------------------- /acmartMeasurements.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/acmartMeasurements.graffle -------------------------------------------------------------------------------- /diff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/diff.pdf -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/flake.nix -------------------------------------------------------------------------------- /fonts/InconsolataN-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/InconsolataN-Bold.otf -------------------------------------------------------------------------------- /fonts/InconsolataN-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/InconsolataN-Regular.otf -------------------------------------------------------------------------------- /fonts/Inconsolatazi4-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/Inconsolatazi4-Bold.otf -------------------------------------------------------------------------------- /fonts/Inconsolatazi4-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/Inconsolatazi4-Regular.otf -------------------------------------------------------------------------------- /fonts/LibertinusKeyboard-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusKeyboard-Regular.otf -------------------------------------------------------------------------------- /fonts/LibertinusMath-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusMath-Regular.otf -------------------------------------------------------------------------------- /fonts/LibertinusMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusMono-Regular.otf -------------------------------------------------------------------------------- /fonts/LibertinusSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSans-Bold.otf -------------------------------------------------------------------------------- /fonts/LibertinusSans-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSans-Italic.otf -------------------------------------------------------------------------------- /fonts/LibertinusSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSans-Regular.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerif-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerif-Bold.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerif-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerif-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerif-Italic.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerif-Regular.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerif-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerif-Semibold.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerif-SemiboldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerif-SemiboldItalic.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerifDisplay-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerifDisplay-Regular.otf -------------------------------------------------------------------------------- /fonts/LibertinusSerifInitials-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LibertinusSerifInitials-Regular.otf -------------------------------------------------------------------------------- /fonts/LinBiolinum_K.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinBiolinum_K.otf -------------------------------------------------------------------------------- /fonts/LinBiolinum_R.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinBiolinum_R.otf -------------------------------------------------------------------------------- /fonts/LinBiolinum_RB.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinBiolinum_RB.otf -------------------------------------------------------------------------------- /fonts/LinBiolinum_RBO.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinBiolinum_RBO.otf -------------------------------------------------------------------------------- /fonts/LinBiolinum_RI.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinBiolinum_RI.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_DR.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_DR.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_I.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_I.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_M.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_M.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_MB.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_MB.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_MBO.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_MBO.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_MO.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_MO.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_R.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_R.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_RB.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_RB.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_RBI.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_RBI.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_RI.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_RI.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_RZ.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_RZ.otf -------------------------------------------------------------------------------- /fonts/LinLibertine_RZI.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/LinLibertine_RZI.otf -------------------------------------------------------------------------------- /fonts/latinmodern-math.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/latinmodern-math.otf -------------------------------------------------------------------------------- /fonts/lmmono10-italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmono10-italic.otf -------------------------------------------------------------------------------- /fonts/lmmono10-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmono10-regular.otf -------------------------------------------------------------------------------- /fonts/lmmonocaps10-oblique.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmonocaps10-oblique.otf -------------------------------------------------------------------------------- /fonts/lmmonocaps10-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmonocaps10-regular.otf -------------------------------------------------------------------------------- /fonts/lmmonolt10-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmonolt10-bold.otf -------------------------------------------------------------------------------- /fonts/lmmonolt10-boldoblique.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmonolt10-boldoblique.otf -------------------------------------------------------------------------------- /fonts/lmmonolt10-oblique.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmonolt10-oblique.otf -------------------------------------------------------------------------------- /fonts/lmmonolt10-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/fonts/lmmonolt10-regular.otf -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/justfile -------------------------------------------------------------------------------- /sample-descend-pldi-paper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/.gitignore -------------------------------------------------------------------------------- /sample-descend-pldi-paper/ACM-Reference-Format.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/ACM-Reference-Format.bst -------------------------------------------------------------------------------- /sample-descend-pldi-paper/acmart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/acmart.cls -------------------------------------------------------------------------------- /sample-descend-pldi-paper/acmauthoryear.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/acmauthoryear.bbx -------------------------------------------------------------------------------- /sample-descend-pldi-paper/acmauthoryear.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/acmauthoryear.cbx -------------------------------------------------------------------------------- /sample-descend-pldi-paper/acmdatamodel.dbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/acmdatamodel.dbx -------------------------------------------------------------------------------- /sample-descend-pldi-paper/acmnumeric.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/acmnumeric.bbx -------------------------------------------------------------------------------- /sample-descend-pldi-paper/acmnumeric.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/acmnumeric.cbx -------------------------------------------------------------------------------- /sample-descend-pldi-paper/bib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/bib.bib -------------------------------------------------------------------------------- /sample-descend-pldi-paper/img/Upsweap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/img/Upsweap.pdf -------------------------------------------------------------------------------- /sample-descend-pldi-paper/img/plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/img/plot.pdf -------------------------------------------------------------------------------- /sample-descend-pldi-paper/img/sssp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/img/sssp.pdf -------------------------------------------------------------------------------- /sample-descend-pldi-paper/listings-cuda.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/listings-cuda.sty -------------------------------------------------------------------------------- /sample-descend-pldi-paper/listings-descend.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/listings-descend.sty -------------------------------------------------------------------------------- /sample-descend-pldi-paper/listings-rust.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/listings-rust.sty -------------------------------------------------------------------------------- /sample-descend-pldi-paper/macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/macros.tex -------------------------------------------------------------------------------- /sample-descend-pldi-paper/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/main.pdf -------------------------------------------------------------------------------- /sample-descend-pldi-paper/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-descend-pldi-paper/main.tex -------------------------------------------------------------------------------- /sample-typst-acmsmall.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-typst-acmsmall.pdf -------------------------------------------------------------------------------- /sample-typst-acmsmall.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-typst-acmsmall.typ -------------------------------------------------------------------------------- /sample-typst-descend-pldi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-typst-descend-pldi.pdf -------------------------------------------------------------------------------- /sample-typst-descend-pldi.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/sample-typst-descend-pldi.typ -------------------------------------------------------------------------------- /template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-steuwer/typst-acmart/HEAD/template.typ --------------------------------------------------------------------------------