├── .github └── workflows │ ├── build.yml │ ├── test.yml │ └── update-test.yml ├── .gitignore ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── example ├── background.svg ├── creodocs_logo.svg ├── main.typ ├── orange1.jpg ├── orange2.jpg ├── orange3.jpg ├── placeholder.jpg └── sample.bib ├── fonts ├── FiraCode-Bold.ttf ├── FiraCode-Regular.ttf ├── FiraMath-Regular.otf ├── Lato-Black.ttf ├── Lato-BlackItalic.ttf ├── Lato-Bold.ttf ├── Lato-BoldItalic.ttf ├── Lato-Hairline.ttf ├── Lato-HairlineItalic.ttf ├── Lato-Heavy.ttf ├── Lato-HeavyItalic.ttf ├── Lato-Italic.ttf ├── Lato-Light.ttf ├── Lato-LightItalic.ttf ├── Lato-Medium.ttf ├── Lato-MediumItalic.ttf ├── Lato-Regular.ttf ├── Lato-Semibold.ttf ├── Lato-SemiboldItalic.ttf ├── Lato-Thin.ttf ├── Lato-ThinItalic.ttf ├── LatoMath.otf └── OPTIOriginal Script Regular.otf ├── justfile ├── lib.typ ├── link.bat ├── my-index.typ ├── my-outline.typ ├── scripts ├── build └── test ├── tests ├── long-part-title │ ├── background.png │ ├── orange1.jpg │ ├── orange2.jpg │ ├── orange3.jpg │ ├── placeholder.jpg │ ├── ref01.png │ ├── ref02.png │ ├── ref03.png │ ├── ref04.png │ ├── ref05.png │ ├── ref06.png │ ├── ref07.png │ ├── ref08.png │ ├── ref09.png │ ├── ref10.png │ ├── ref11.png │ ├── ref12.png │ ├── ref13.png │ ├── ref14.png │ ├── ref15.png │ ├── ref16.png │ ├── ref17.png │ ├── ref18.png │ ├── ref19.png │ ├── ref20.png │ ├── ref21.png │ ├── ref22.png │ ├── ref23.png │ ├── ref24.png │ ├── ref25.png │ ├── ref26.png │ ├── ref27.png │ ├── ref28.png │ ├── ref29.png │ ├── ref30.png │ ├── ref31.png │ ├── ref32.png │ ├── ref33.png │ ├── sample.bib │ └── test.typ ├── part-style-1 │ ├── ref01.png │ ├── ref02.png │ ├── ref03.png │ ├── ref04.png │ ├── ref05.png │ ├── ref06.png │ ├── ref07.png │ ├── ref08.png │ ├── ref09.png │ ├── ref10.png │ ├── ref11.png │ ├── ref12.png │ └── test.typ └── sample-book │ ├── background.png │ ├── creodocs_logo.svg │ ├── orange1.jpg │ ├── orange2.jpg │ ├── orange3.jpg │ ├── placeholder.jpg │ ├── ref01.png │ ├── ref02.png │ ├── ref03.png │ ├── ref04.png │ ├── ref05.png │ ├── ref06.png │ ├── ref07.png │ ├── ref08.png │ ├── ref09.png │ ├── ref10.png │ ├── ref11.png │ ├── ref12.png │ ├── ref13.png │ ├── ref14.png │ ├── ref15.png │ ├── ref16.png │ ├── ref17.png │ ├── ref18.png │ ├── ref19.png │ ├── ref20.png │ ├── ref21.png │ ├── ref22.png │ ├── ref23.png │ ├── ref24.png │ ├── ref25.png │ ├── ref26.png │ ├── ref27.png │ ├── ref28.png │ ├── ref29.png │ ├── ref30.png │ ├── ref31.png │ ├── sample.bib │ └── test.typ ├── theorems.typ ├── thumbnail.png └── typst.toml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/.github/workflows/update-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/README.md -------------------------------------------------------------------------------- /example/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/background.svg -------------------------------------------------------------------------------- /example/creodocs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/creodocs_logo.svg -------------------------------------------------------------------------------- /example/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/main.typ -------------------------------------------------------------------------------- /example/orange1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/orange1.jpg -------------------------------------------------------------------------------- /example/orange2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/orange2.jpg -------------------------------------------------------------------------------- /example/orange3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/orange3.jpg -------------------------------------------------------------------------------- /example/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/placeholder.jpg -------------------------------------------------------------------------------- /example/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/example/sample.bib -------------------------------------------------------------------------------- /fonts/FiraCode-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/FiraCode-Bold.ttf -------------------------------------------------------------------------------- /fonts/FiraCode-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/FiraCode-Regular.ttf -------------------------------------------------------------------------------- /fonts/FiraMath-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/FiraMath-Regular.otf -------------------------------------------------------------------------------- /fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /fonts/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /fonts/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Hairline.ttf -------------------------------------------------------------------------------- /fonts/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Heavy.ttf -------------------------------------------------------------------------------- /fonts/Lato-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-HeavyItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /fonts/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Medium.ttf -------------------------------------------------------------------------------- /fonts/Lato-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /fonts/Lato-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Semibold.ttf -------------------------------------------------------------------------------- /fonts/Lato-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-SemiboldItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-Thin.ttf -------------------------------------------------------------------------------- /fonts/Lato-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/Lato-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/LatoMath.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/LatoMath.otf -------------------------------------------------------------------------------- /fonts/OPTIOriginal Script Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/fonts/OPTIOriginal Script Regular.otf -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/justfile -------------------------------------------------------------------------------- /lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/lib.typ -------------------------------------------------------------------------------- /link.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/link.bat -------------------------------------------------------------------------------- /my-index.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/my-index.typ -------------------------------------------------------------------------------- /my-outline.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/my-outline.typ -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/scripts/test -------------------------------------------------------------------------------- /tests/long-part-title/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/background.png -------------------------------------------------------------------------------- /tests/long-part-title/orange1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/orange1.jpg -------------------------------------------------------------------------------- /tests/long-part-title/orange2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/orange2.jpg -------------------------------------------------------------------------------- /tests/long-part-title/orange3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/orange3.jpg -------------------------------------------------------------------------------- /tests/long-part-title/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/placeholder.jpg -------------------------------------------------------------------------------- /tests/long-part-title/ref01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref01.png -------------------------------------------------------------------------------- /tests/long-part-title/ref02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref02.png -------------------------------------------------------------------------------- /tests/long-part-title/ref03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref03.png -------------------------------------------------------------------------------- /tests/long-part-title/ref04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref04.png -------------------------------------------------------------------------------- /tests/long-part-title/ref05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref05.png -------------------------------------------------------------------------------- /tests/long-part-title/ref06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref06.png -------------------------------------------------------------------------------- /tests/long-part-title/ref07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref07.png -------------------------------------------------------------------------------- /tests/long-part-title/ref08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref08.png -------------------------------------------------------------------------------- /tests/long-part-title/ref09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref09.png -------------------------------------------------------------------------------- /tests/long-part-title/ref10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref10.png -------------------------------------------------------------------------------- /tests/long-part-title/ref11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref11.png -------------------------------------------------------------------------------- /tests/long-part-title/ref12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref12.png -------------------------------------------------------------------------------- /tests/long-part-title/ref13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref13.png -------------------------------------------------------------------------------- /tests/long-part-title/ref14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref14.png -------------------------------------------------------------------------------- /tests/long-part-title/ref15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref15.png -------------------------------------------------------------------------------- /tests/long-part-title/ref16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref16.png -------------------------------------------------------------------------------- /tests/long-part-title/ref17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref17.png -------------------------------------------------------------------------------- /tests/long-part-title/ref18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref18.png -------------------------------------------------------------------------------- /tests/long-part-title/ref19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref19.png -------------------------------------------------------------------------------- /tests/long-part-title/ref20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref20.png -------------------------------------------------------------------------------- /tests/long-part-title/ref21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref21.png -------------------------------------------------------------------------------- /tests/long-part-title/ref22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref22.png -------------------------------------------------------------------------------- /tests/long-part-title/ref23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref23.png -------------------------------------------------------------------------------- /tests/long-part-title/ref24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref24.png -------------------------------------------------------------------------------- /tests/long-part-title/ref25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref25.png -------------------------------------------------------------------------------- /tests/long-part-title/ref26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref26.png -------------------------------------------------------------------------------- /tests/long-part-title/ref27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref27.png -------------------------------------------------------------------------------- /tests/long-part-title/ref28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref28.png -------------------------------------------------------------------------------- /tests/long-part-title/ref29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref29.png -------------------------------------------------------------------------------- /tests/long-part-title/ref30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref30.png -------------------------------------------------------------------------------- /tests/long-part-title/ref31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref31.png -------------------------------------------------------------------------------- /tests/long-part-title/ref32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref32.png -------------------------------------------------------------------------------- /tests/long-part-title/ref33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/ref33.png -------------------------------------------------------------------------------- /tests/long-part-title/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/sample.bib -------------------------------------------------------------------------------- /tests/long-part-title/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/long-part-title/test.typ -------------------------------------------------------------------------------- /tests/part-style-1/ref01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref01.png -------------------------------------------------------------------------------- /tests/part-style-1/ref02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref02.png -------------------------------------------------------------------------------- /tests/part-style-1/ref03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref03.png -------------------------------------------------------------------------------- /tests/part-style-1/ref04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref04.png -------------------------------------------------------------------------------- /tests/part-style-1/ref05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref05.png -------------------------------------------------------------------------------- /tests/part-style-1/ref06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref06.png -------------------------------------------------------------------------------- /tests/part-style-1/ref07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref07.png -------------------------------------------------------------------------------- /tests/part-style-1/ref08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref08.png -------------------------------------------------------------------------------- /tests/part-style-1/ref09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref09.png -------------------------------------------------------------------------------- /tests/part-style-1/ref10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref10.png -------------------------------------------------------------------------------- /tests/part-style-1/ref11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref11.png -------------------------------------------------------------------------------- /tests/part-style-1/ref12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/ref12.png -------------------------------------------------------------------------------- /tests/part-style-1/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/part-style-1/test.typ -------------------------------------------------------------------------------- /tests/sample-book/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/background.png -------------------------------------------------------------------------------- /tests/sample-book/creodocs_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/creodocs_logo.svg -------------------------------------------------------------------------------- /tests/sample-book/orange1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/orange1.jpg -------------------------------------------------------------------------------- /tests/sample-book/orange2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/orange2.jpg -------------------------------------------------------------------------------- /tests/sample-book/orange3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/orange3.jpg -------------------------------------------------------------------------------- /tests/sample-book/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/placeholder.jpg -------------------------------------------------------------------------------- /tests/sample-book/ref01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref01.png -------------------------------------------------------------------------------- /tests/sample-book/ref02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref02.png -------------------------------------------------------------------------------- /tests/sample-book/ref03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref03.png -------------------------------------------------------------------------------- /tests/sample-book/ref04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref04.png -------------------------------------------------------------------------------- /tests/sample-book/ref05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref05.png -------------------------------------------------------------------------------- /tests/sample-book/ref06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref06.png -------------------------------------------------------------------------------- /tests/sample-book/ref07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref07.png -------------------------------------------------------------------------------- /tests/sample-book/ref08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref08.png -------------------------------------------------------------------------------- /tests/sample-book/ref09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref09.png -------------------------------------------------------------------------------- /tests/sample-book/ref10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref10.png -------------------------------------------------------------------------------- /tests/sample-book/ref11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref11.png -------------------------------------------------------------------------------- /tests/sample-book/ref12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref12.png -------------------------------------------------------------------------------- /tests/sample-book/ref13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref13.png -------------------------------------------------------------------------------- /tests/sample-book/ref14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref14.png -------------------------------------------------------------------------------- /tests/sample-book/ref15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref15.png -------------------------------------------------------------------------------- /tests/sample-book/ref16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref16.png -------------------------------------------------------------------------------- /tests/sample-book/ref17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref17.png -------------------------------------------------------------------------------- /tests/sample-book/ref18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref18.png -------------------------------------------------------------------------------- /tests/sample-book/ref19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref19.png -------------------------------------------------------------------------------- /tests/sample-book/ref20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref20.png -------------------------------------------------------------------------------- /tests/sample-book/ref21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref21.png -------------------------------------------------------------------------------- /tests/sample-book/ref22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref22.png -------------------------------------------------------------------------------- /tests/sample-book/ref23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref23.png -------------------------------------------------------------------------------- /tests/sample-book/ref24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref24.png -------------------------------------------------------------------------------- /tests/sample-book/ref25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref25.png -------------------------------------------------------------------------------- /tests/sample-book/ref26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref26.png -------------------------------------------------------------------------------- /tests/sample-book/ref27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref27.png -------------------------------------------------------------------------------- /tests/sample-book/ref28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref28.png -------------------------------------------------------------------------------- /tests/sample-book/ref29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref29.png -------------------------------------------------------------------------------- /tests/sample-book/ref30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref30.png -------------------------------------------------------------------------------- /tests/sample-book/ref31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/ref31.png -------------------------------------------------------------------------------- /tests/sample-book/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/sample.bib -------------------------------------------------------------------------------- /tests/sample-book/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/tests/sample-book/test.typ -------------------------------------------------------------------------------- /theorems.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/theorems.typ -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/thumbnail.png -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flavio20002/typst-orange-template/HEAD/typst.toml --------------------------------------------------------------------------------