├── .github ├── scripts │ ├── install-fonts.sh │ └── install-texlive.sh └── workflows │ └── build-examples.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── _config.yml └── index.md ├── examples ├── basic-example │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── beamer │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── book │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── boxes-with-pandoc-latex-environment-and-awesomebox │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── boxes-with-pandoc-latex-environment-and-tcolorbox │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── build-examples.sh ├── code-blocks-listings │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── code-blocks-without-listings │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── columns │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── font-emoji-noto-color-emoji │ ├── GenerateMarkdownDocument.java │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── font-emoji-openmoji │ ├── GenerateMarkdownDocument.java │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── font-unicode-font-fallback │ ├── GenerateMarkdownDocument.java │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── header-and-footer │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── images-and-tables │ ├── build.sh │ ├── document.md │ ├── document.pdf │ ├── image.png │ └── preview.png ├── landscape-koma-script │ ├── build.sh │ ├── document.md │ ├── document.pdf │ ├── image.png │ └── preview.png ├── landscape-lscape │ ├── build.sh │ ├── document.md │ ├── document.pdf │ ├── image.png │ └── preview.png ├── landscape-pdflscape │ ├── build.sh │ ├── document.md │ ├── document.pdf │ ├── image.png │ └── preview.png ├── language-chinese │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── language-german │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── language-japanese │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── page-background │ ├── backgrounds │ │ ├── background1.pdf │ │ ├── background10.pdf │ │ ├── background11.pdf │ │ ├── background2.pdf │ │ ├── background3.pdf │ │ ├── background4.pdf │ │ ├── background5.pdf │ │ ├── background6.pdf │ │ ├── background7.pdf │ │ ├── background8.pdf │ │ └── background9.pdf │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── table-of-contents │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── title-page-background │ ├── backgrounds │ │ ├── background1.pdf │ │ ├── background10.pdf │ │ ├── background11.pdf │ │ ├── background2.pdf │ │ ├── background3.pdf │ │ ├── background4.pdf │ │ ├── background5.pdf │ │ ├── background6.pdf │ │ ├── background7.pdf │ │ ├── background8.pdf │ │ └── background9.pdf │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── title-page-custom │ ├── background.pdf │ ├── build.sh │ ├── document.md │ ├── document.pdf │ ├── logo-inverted.pdf │ ├── logo-inverted.svg │ └── preview.png ├── title-page-default │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── title-page-green │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── title-page-logo │ ├── build.sh │ ├── document.md │ ├── document.pdf │ ├── logo.pdf │ ├── logo.svg │ └── preview.png ├── twoside │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png └── watermark │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── icon.png ├── icon.svg ├── resources ├── fonts │ ├── Noto_Color_Emoji │ │ ├── NotoColorEmoji_WindowsCompatible.ttf │ │ └── OFL.txt │ ├── Noto_Sans_Cuneiform │ │ ├── NotoSansCuneiform-Regular.ttf │ │ └── OFL.txt │ ├── Noto_Sans_Egyptian_Hieroglyphs │ │ ├── NotoSansEgyptianHieroglyphs-Regular.ttf │ │ └── OFL.txt │ ├── Noto_Sans_Myanmar │ │ ├── NotoSansMyanmar-Regular.ttf │ │ └── OFL.txt │ ├── Noto_Sans_Oriya │ │ ├── NotoSansOriya-Regular.ttf │ │ └── OFL.txt │ ├── OpenMoji │ │ ├── LICENSE.txt │ │ └── OpenMoji-color-glyf_colr_0.ttf │ └── Source_Sans_3 │ │ ├── OFL.txt │ │ ├── SourceSans3-Black.ttf │ │ ├── SourceSans3-BlackItalic.ttf │ │ ├── SourceSans3-Bold.ttf │ │ ├── SourceSans3-BoldItalic.ttf │ │ ├── SourceSans3-ExtraBold.ttf │ │ ├── SourceSans3-ExtraBoldItalic.ttf │ │ ├── SourceSans3-ExtraLight.ttf │ │ ├── SourceSans3-ExtraLightItalic.ttf │ │ ├── SourceSans3-Italic.ttf │ │ ├── SourceSans3-Light.ttf │ │ ├── SourceSans3-LightItalic.ttf │ │ ├── SourceSans3-Medium.ttf │ │ ├── SourceSans3-MediumItalic.ttf │ │ ├── SourceSans3-Regular.ttf │ │ ├── SourceSans3-SemiBold.ttf │ │ └── SourceSans3-SemiBoldItalic.ttf └── texlive.profile ├── template-multi-file ├── after-header-includes.latex ├── common.latex ├── eisvogel-added.latex ├── eisvogel-title-page.latex ├── eisvogel.beamer ├── eisvogel.latex ├── font-settings.latex ├── fonts.latex ├── hypersetup.latex └── passoptions.latex ├── tests ├── build-tests.sh ├── heading │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── horizontal-rule │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── list-definition │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── list-ordered │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png ├── list-task │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png └── list-unordered │ ├── build.sh │ ├── document.md │ ├── document.pdf │ └── preview.png └── tools └── release.sh /.github/scripts/install-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/.github/scripts/install-fonts.sh -------------------------------------------------------------------------------- /.github/scripts/install-texlive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/.github/scripts/install-texlive.sh -------------------------------------------------------------------------------- /.github/workflows/build-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/.github/workflows/build-examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/basic-example/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/basic-example/build.sh -------------------------------------------------------------------------------- /examples/basic-example/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/basic-example/document.md -------------------------------------------------------------------------------- /examples/basic-example/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/basic-example/document.pdf -------------------------------------------------------------------------------- /examples/basic-example/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/basic-example/preview.png -------------------------------------------------------------------------------- /examples/beamer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/beamer/build.sh -------------------------------------------------------------------------------- /examples/beamer/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/beamer/document.md -------------------------------------------------------------------------------- /examples/beamer/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/beamer/document.pdf -------------------------------------------------------------------------------- /examples/beamer/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/beamer/preview.png -------------------------------------------------------------------------------- /examples/book/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/book/build.sh -------------------------------------------------------------------------------- /examples/book/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/book/document.md -------------------------------------------------------------------------------- /examples/book/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/book/document.pdf -------------------------------------------------------------------------------- /examples/book/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/book/preview.png -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-awesomebox/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-awesomebox/build.sh -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-awesomebox/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-awesomebox/document.md -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-awesomebox/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-awesomebox/document.pdf -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-awesomebox/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-awesomebox/preview.png -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-tcolorbox/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-tcolorbox/build.sh -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-tcolorbox/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-tcolorbox/document.md -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-tcolorbox/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-tcolorbox/document.pdf -------------------------------------------------------------------------------- /examples/boxes-with-pandoc-latex-environment-and-tcolorbox/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/boxes-with-pandoc-latex-environment-and-tcolorbox/preview.png -------------------------------------------------------------------------------- /examples/build-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/build-examples.sh -------------------------------------------------------------------------------- /examples/code-blocks-listings/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-listings/build.sh -------------------------------------------------------------------------------- /examples/code-blocks-listings/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-listings/document.md -------------------------------------------------------------------------------- /examples/code-blocks-listings/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-listings/document.pdf -------------------------------------------------------------------------------- /examples/code-blocks-listings/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-listings/preview.png -------------------------------------------------------------------------------- /examples/code-blocks-without-listings/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-without-listings/build.sh -------------------------------------------------------------------------------- /examples/code-blocks-without-listings/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-without-listings/document.md -------------------------------------------------------------------------------- /examples/code-blocks-without-listings/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-without-listings/document.pdf -------------------------------------------------------------------------------- /examples/code-blocks-without-listings/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/code-blocks-without-listings/preview.png -------------------------------------------------------------------------------- /examples/columns/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/columns/build.sh -------------------------------------------------------------------------------- /examples/columns/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/columns/document.md -------------------------------------------------------------------------------- /examples/columns/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/columns/document.pdf -------------------------------------------------------------------------------- /examples/columns/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/columns/preview.png -------------------------------------------------------------------------------- /examples/font-emoji-noto-color-emoji/GenerateMarkdownDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-noto-color-emoji/GenerateMarkdownDocument.java -------------------------------------------------------------------------------- /examples/font-emoji-noto-color-emoji/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-noto-color-emoji/build.sh -------------------------------------------------------------------------------- /examples/font-emoji-noto-color-emoji/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-noto-color-emoji/document.md -------------------------------------------------------------------------------- /examples/font-emoji-noto-color-emoji/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-noto-color-emoji/document.pdf -------------------------------------------------------------------------------- /examples/font-emoji-noto-color-emoji/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-noto-color-emoji/preview.png -------------------------------------------------------------------------------- /examples/font-emoji-openmoji/GenerateMarkdownDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-openmoji/GenerateMarkdownDocument.java -------------------------------------------------------------------------------- /examples/font-emoji-openmoji/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-openmoji/build.sh -------------------------------------------------------------------------------- /examples/font-emoji-openmoji/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-openmoji/document.md -------------------------------------------------------------------------------- /examples/font-emoji-openmoji/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-openmoji/document.pdf -------------------------------------------------------------------------------- /examples/font-emoji-openmoji/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-emoji-openmoji/preview.png -------------------------------------------------------------------------------- /examples/font-unicode-font-fallback/GenerateMarkdownDocument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-unicode-font-fallback/GenerateMarkdownDocument.java -------------------------------------------------------------------------------- /examples/font-unicode-font-fallback/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-unicode-font-fallback/build.sh -------------------------------------------------------------------------------- /examples/font-unicode-font-fallback/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-unicode-font-fallback/document.md -------------------------------------------------------------------------------- /examples/font-unicode-font-fallback/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-unicode-font-fallback/document.pdf -------------------------------------------------------------------------------- /examples/font-unicode-font-fallback/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/font-unicode-font-fallback/preview.png -------------------------------------------------------------------------------- /examples/header-and-footer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/header-and-footer/build.sh -------------------------------------------------------------------------------- /examples/header-and-footer/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/header-and-footer/document.md -------------------------------------------------------------------------------- /examples/header-and-footer/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/header-and-footer/document.pdf -------------------------------------------------------------------------------- /examples/header-and-footer/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/header-and-footer/preview.png -------------------------------------------------------------------------------- /examples/images-and-tables/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/images-and-tables/build.sh -------------------------------------------------------------------------------- /examples/images-and-tables/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/images-and-tables/document.md -------------------------------------------------------------------------------- /examples/images-and-tables/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/images-and-tables/document.pdf -------------------------------------------------------------------------------- /examples/images-and-tables/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/images-and-tables/image.png -------------------------------------------------------------------------------- /examples/images-and-tables/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/images-and-tables/preview.png -------------------------------------------------------------------------------- /examples/landscape-koma-script/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-koma-script/build.sh -------------------------------------------------------------------------------- /examples/landscape-koma-script/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-koma-script/document.md -------------------------------------------------------------------------------- /examples/landscape-koma-script/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-koma-script/document.pdf -------------------------------------------------------------------------------- /examples/landscape-koma-script/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-koma-script/image.png -------------------------------------------------------------------------------- /examples/landscape-koma-script/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-koma-script/preview.png -------------------------------------------------------------------------------- /examples/landscape-lscape/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-lscape/build.sh -------------------------------------------------------------------------------- /examples/landscape-lscape/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-lscape/document.md -------------------------------------------------------------------------------- /examples/landscape-lscape/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-lscape/document.pdf -------------------------------------------------------------------------------- /examples/landscape-lscape/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-lscape/image.png -------------------------------------------------------------------------------- /examples/landscape-lscape/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-lscape/preview.png -------------------------------------------------------------------------------- /examples/landscape-pdflscape/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-pdflscape/build.sh -------------------------------------------------------------------------------- /examples/landscape-pdflscape/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-pdflscape/document.md -------------------------------------------------------------------------------- /examples/landscape-pdflscape/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-pdflscape/document.pdf -------------------------------------------------------------------------------- /examples/landscape-pdflscape/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-pdflscape/image.png -------------------------------------------------------------------------------- /examples/landscape-pdflscape/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/landscape-pdflscape/preview.png -------------------------------------------------------------------------------- /examples/language-chinese/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-chinese/build.sh -------------------------------------------------------------------------------- /examples/language-chinese/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-chinese/document.md -------------------------------------------------------------------------------- /examples/language-chinese/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-chinese/document.pdf -------------------------------------------------------------------------------- /examples/language-chinese/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-chinese/preview.png -------------------------------------------------------------------------------- /examples/language-german/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-german/build.sh -------------------------------------------------------------------------------- /examples/language-german/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-german/document.md -------------------------------------------------------------------------------- /examples/language-german/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-german/document.pdf -------------------------------------------------------------------------------- /examples/language-german/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-german/preview.png -------------------------------------------------------------------------------- /examples/language-japanese/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-japanese/build.sh -------------------------------------------------------------------------------- /examples/language-japanese/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-japanese/document.md -------------------------------------------------------------------------------- /examples/language-japanese/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-japanese/document.pdf -------------------------------------------------------------------------------- /examples/language-japanese/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/language-japanese/preview.png -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background1.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background10.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background11.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background2.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background3.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background4.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background5.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background6.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background7.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background8.pdf -------------------------------------------------------------------------------- /examples/page-background/backgrounds/background9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/backgrounds/background9.pdf -------------------------------------------------------------------------------- /examples/page-background/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/build.sh -------------------------------------------------------------------------------- /examples/page-background/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/document.md -------------------------------------------------------------------------------- /examples/page-background/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/document.pdf -------------------------------------------------------------------------------- /examples/page-background/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/page-background/preview.png -------------------------------------------------------------------------------- /examples/table-of-contents/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/table-of-contents/build.sh -------------------------------------------------------------------------------- /examples/table-of-contents/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/table-of-contents/document.md -------------------------------------------------------------------------------- /examples/table-of-contents/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/table-of-contents/document.pdf -------------------------------------------------------------------------------- /examples/table-of-contents/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/table-of-contents/preview.png -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background1.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background10.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background11.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background2.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background3.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background4.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background5.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background6.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background7.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background8.pdf -------------------------------------------------------------------------------- /examples/title-page-background/backgrounds/background9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/backgrounds/background9.pdf -------------------------------------------------------------------------------- /examples/title-page-background/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/build.sh -------------------------------------------------------------------------------- /examples/title-page-background/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/document.md -------------------------------------------------------------------------------- /examples/title-page-background/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/document.pdf -------------------------------------------------------------------------------- /examples/title-page-background/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-background/preview.png -------------------------------------------------------------------------------- /examples/title-page-custom/background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-custom/background.pdf -------------------------------------------------------------------------------- /examples/title-page-custom/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-custom/build.sh -------------------------------------------------------------------------------- /examples/title-page-custom/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-custom/document.md -------------------------------------------------------------------------------- /examples/title-page-custom/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-custom/document.pdf -------------------------------------------------------------------------------- /examples/title-page-custom/logo-inverted.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-custom/logo-inverted.pdf -------------------------------------------------------------------------------- /examples/title-page-custom/logo-inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-custom/logo-inverted.svg -------------------------------------------------------------------------------- /examples/title-page-custom/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-custom/preview.png -------------------------------------------------------------------------------- /examples/title-page-default/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-default/build.sh -------------------------------------------------------------------------------- /examples/title-page-default/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-default/document.md -------------------------------------------------------------------------------- /examples/title-page-default/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-default/document.pdf -------------------------------------------------------------------------------- /examples/title-page-default/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-default/preview.png -------------------------------------------------------------------------------- /examples/title-page-green/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-green/build.sh -------------------------------------------------------------------------------- /examples/title-page-green/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-green/document.md -------------------------------------------------------------------------------- /examples/title-page-green/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-green/document.pdf -------------------------------------------------------------------------------- /examples/title-page-green/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-green/preview.png -------------------------------------------------------------------------------- /examples/title-page-logo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-logo/build.sh -------------------------------------------------------------------------------- /examples/title-page-logo/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-logo/document.md -------------------------------------------------------------------------------- /examples/title-page-logo/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-logo/document.pdf -------------------------------------------------------------------------------- /examples/title-page-logo/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-logo/logo.pdf -------------------------------------------------------------------------------- /examples/title-page-logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-logo/logo.svg -------------------------------------------------------------------------------- /examples/title-page-logo/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/title-page-logo/preview.png -------------------------------------------------------------------------------- /examples/twoside/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/twoside/build.sh -------------------------------------------------------------------------------- /examples/twoside/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/twoside/document.md -------------------------------------------------------------------------------- /examples/twoside/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/twoside/document.pdf -------------------------------------------------------------------------------- /examples/twoside/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/twoside/preview.png -------------------------------------------------------------------------------- /examples/watermark/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/watermark/build.sh -------------------------------------------------------------------------------- /examples/watermark/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/watermark/document.md -------------------------------------------------------------------------------- /examples/watermark/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/watermark/document.pdf -------------------------------------------------------------------------------- /examples/watermark/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/examples/watermark/preview.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/icon.svg -------------------------------------------------------------------------------- /resources/fonts/Noto_Color_Emoji/NotoColorEmoji_WindowsCompatible.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Color_Emoji/NotoColorEmoji_WindowsCompatible.ttf -------------------------------------------------------------------------------- /resources/fonts/Noto_Color_Emoji/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Color_Emoji/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Cuneiform/NotoSansCuneiform-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Cuneiform/NotoSansCuneiform-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Cuneiform/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Cuneiform/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Egyptian_Hieroglyphs/NotoSansEgyptianHieroglyphs-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Egyptian_Hieroglyphs/NotoSansEgyptianHieroglyphs-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Egyptian_Hieroglyphs/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Egyptian_Hieroglyphs/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Myanmar/NotoSansMyanmar-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Myanmar/NotoSansMyanmar-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Myanmar/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Myanmar/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Oriya/NotoSansOriya-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Oriya/NotoSansOriya-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Noto_Sans_Oriya/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Noto_Sans_Oriya/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/OpenMoji/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/OpenMoji/LICENSE.txt -------------------------------------------------------------------------------- /resources/fonts/OpenMoji/OpenMoji-color-glyf_colr_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/OpenMoji/OpenMoji-color-glyf_colr_0.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/OFL.txt -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-Black.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-BlackItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-ExtraLight.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-LightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-Medium.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-MediumItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-SemiBold.ttf -------------------------------------------------------------------------------- /resources/fonts/Source_Sans_3/SourceSans3-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/fonts/Source_Sans_3/SourceSans3-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /resources/texlive.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/resources/texlive.profile -------------------------------------------------------------------------------- /template-multi-file/after-header-includes.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/after-header-includes.latex -------------------------------------------------------------------------------- /template-multi-file/common.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/common.latex -------------------------------------------------------------------------------- /template-multi-file/eisvogel-added.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/eisvogel-added.latex -------------------------------------------------------------------------------- /template-multi-file/eisvogel-title-page.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/eisvogel-title-page.latex -------------------------------------------------------------------------------- /template-multi-file/eisvogel.beamer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/eisvogel.beamer -------------------------------------------------------------------------------- /template-multi-file/eisvogel.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/eisvogel.latex -------------------------------------------------------------------------------- /template-multi-file/font-settings.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/font-settings.latex -------------------------------------------------------------------------------- /template-multi-file/fonts.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/fonts.latex -------------------------------------------------------------------------------- /template-multi-file/hypersetup.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/hypersetup.latex -------------------------------------------------------------------------------- /template-multi-file/passoptions.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/template-multi-file/passoptions.latex -------------------------------------------------------------------------------- /tests/build-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/build-tests.sh -------------------------------------------------------------------------------- /tests/heading/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/heading/build.sh -------------------------------------------------------------------------------- /tests/heading/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/heading/document.md -------------------------------------------------------------------------------- /tests/heading/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/heading/document.pdf -------------------------------------------------------------------------------- /tests/heading/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/heading/preview.png -------------------------------------------------------------------------------- /tests/horizontal-rule/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/horizontal-rule/build.sh -------------------------------------------------------------------------------- /tests/horizontal-rule/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/horizontal-rule/document.md -------------------------------------------------------------------------------- /tests/horizontal-rule/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/horizontal-rule/document.pdf -------------------------------------------------------------------------------- /tests/horizontal-rule/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/horizontal-rule/preview.png -------------------------------------------------------------------------------- /tests/list-definition/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-definition/build.sh -------------------------------------------------------------------------------- /tests/list-definition/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-definition/document.md -------------------------------------------------------------------------------- /tests/list-definition/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-definition/document.pdf -------------------------------------------------------------------------------- /tests/list-definition/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-definition/preview.png -------------------------------------------------------------------------------- /tests/list-ordered/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-ordered/build.sh -------------------------------------------------------------------------------- /tests/list-ordered/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-ordered/document.md -------------------------------------------------------------------------------- /tests/list-ordered/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-ordered/document.pdf -------------------------------------------------------------------------------- /tests/list-ordered/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-ordered/preview.png -------------------------------------------------------------------------------- /tests/list-task/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-task/build.sh -------------------------------------------------------------------------------- /tests/list-task/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-task/document.md -------------------------------------------------------------------------------- /tests/list-task/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-task/document.pdf -------------------------------------------------------------------------------- /tests/list-task/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-task/preview.png -------------------------------------------------------------------------------- /tests/list-unordered/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-unordered/build.sh -------------------------------------------------------------------------------- /tests/list-unordered/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-unordered/document.md -------------------------------------------------------------------------------- /tests/list-unordered/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-unordered/document.pdf -------------------------------------------------------------------------------- /tests/list-unordered/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tests/list-unordered/preview.png -------------------------------------------------------------------------------- /tools/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template/HEAD/tools/release.sh --------------------------------------------------------------------------------