├── website ├── _site │ ├── robots.txt │ ├── theme │ │ ├── _beam.assets │ │ │ ├── beam.png │ │ │ ├── beam_page-0001.jpg │ │ │ ├── beam_page-0002.jpg │ │ │ ├── beam_page-0003.jpg │ │ │ ├── beam_page-0004.jpg │ │ │ ├── beam_page-0005.jpg │ │ │ ├── beam_page-0006.jpg │ │ │ ├── beam_page-0007.jpg │ │ │ ├── beam_page-0008.jpg │ │ │ └── beam_page-0009.jpg │ │ ├── _border.assets │ │ │ ├── border.png │ │ │ ├── template_page-0001.jpg │ │ │ ├── template_page-0002.jpg │ │ │ ├── template_page-0003.jpg │ │ │ ├── template_page-0004.jpg │ │ │ ├── template_page-0005.jpg │ │ │ ├── template_page-0006.jpg │ │ │ ├── template_page-0007.jpg │ │ │ ├── template_page-0008.jpg │ │ │ └── template_page-0009.jpg │ │ ├── _gradient.assets │ │ │ ├── gradient.png │ │ │ ├── gradient_page-0000.jpg │ │ │ ├── gradient_page-0001.jpg │ │ │ ├── gradient_page-0002.jpg │ │ │ ├── gradient_page-0003.jpg │ │ │ ├── gradient_page-0004.jpg │ │ │ ├── gradient_page-0005.jpg │ │ │ ├── gradient_page-0006.jpg │ │ │ ├── gradient_page-0007.jpg │ │ │ ├── gradient_page-0008.jpg │ │ │ └── gradient_page-0009.jpg │ │ ├── index.html │ │ ├── beamer │ │ │ └── index.html │ │ ├── border.html │ │ ├── gradient.html │ │ └── beam.html │ ├── site_libs │ │ ├── bootstrap │ │ │ └── bootstrap-icons.woff │ │ ├── quarto-html │ │ │ ├── tippy.css │ │ │ ├── quarto-syntax-highlighting.css │ │ │ ├── anchor.min.js │ │ │ └── popper.min.js │ │ ├── quarto-nav │ │ │ ├── headroom.min.js │ │ │ └── quarto-nav.js │ │ ├── quarto-listing │ │ │ ├── quarto-listing.js │ │ │ └── list.min.js │ │ └── clipboard │ │ │ └── clipboard.min.js │ ├── listings.json │ ├── vercel.json │ ├── script.sh │ ├── styles.css │ ├── beam │ │ └── index.html │ ├── beamer │ │ └── index.html │ ├── border │ │ └── index.html │ ├── gradient │ │ └── index.html │ ├── sitemap.xml │ ├── search.json │ └── 404.html └── README.md ├── template ├── flower.jpg ├── thumbnail_template.psd ├── template.md └── submission_template.md ├── .gitignore ├── themes ├── README.md ├── licenses │ ├── LICENSE_border │ ├── LICENSE_gradient │ ├── LICENSE_graph_paper │ ├── LICENSE_academic │ ├── LICENSE_rose-pine │ └── LICENSE_GPLv2 ├── border.css ├── gradient.css ├── graph_paper.css ├── academic.css ├── rose-pine.css ├── rose-pine-dawn.css ├── rose-pine-moon.css └── beam.css ├── LICENSE └── README.md /website/_site/robots.txt: -------------------------------------------------------------------------------- 1 | Sitemap: https://marp-community-themes.vercel.app/sitemap.xml 2 | -------------------------------------------------------------------------------- /template/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/template/flower.jpg -------------------------------------------------------------------------------- /template/thumbnail_template.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/template/thumbnail_template.psd -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam.png -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/border.png -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient.png -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0001.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0002.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0003.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0004.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0005.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0006.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0007.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0008.jpg -------------------------------------------------------------------------------- /website/_site/theme/_beam.assets/beam_page-0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_beam.assets/beam_page-0009.jpg -------------------------------------------------------------------------------- /website/_site/site_libs/bootstrap/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/site_libs/bootstrap/bootstrap-icons.woff -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0001.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0002.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0003.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0004.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0005.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0006.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0007.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0008.jpg -------------------------------------------------------------------------------- /website/_site/theme/_border.assets/template_page-0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_border.assets/template_page-0009.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | website/.Rhistory 2 | website/.Rproj.user/ 3 | .Rproj.user/ 4 | post.md 5 | website/.quarto/ 6 | website/_todo.md 7 | .quarto/ 8 | .Rhistory 9 | notes.txt 10 | -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0000.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0001.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0002.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0003.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0004.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0005.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0006.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0007.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0008.jpg -------------------------------------------------------------------------------- /website/_site/theme/_gradient.assets/gradient_page-0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnd195/marp-community-themes/HEAD/website/_site/theme/_gradient.assets/gradient_page-0009.jpg -------------------------------------------------------------------------------- /website/_site/listings.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "listing": "/index.html", 4 | "items": [ 5 | "/theme/beam.html", 6 | "/theme/border.html", 7 | "/theme/gradient.html" 8 | ] 9 | } 10 | ] -------------------------------------------------------------------------------- /website/_site/vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "cleanUrls": true, 3 | "redirects": [ 4 | { 5 | "source": "/(.*)", 6 | "destination": "https://rnd195.github.io/marp-community-themes/$1", 7 | "statusCode": 301 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- 1 | The project has been moved from to . 2 | 3 | The website is built from the `gh-pages` branch. 4 | 5 | The `_site/` directory is kept for compatibility (might be removed later). -------------------------------------------------------------------------------- /website/_site/script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ "$VERCEL_GIT_COMMIT_REF" != "live" ]] ; then 4 | # Don't build 5 | echo "🛑 - Build cancelled" 6 | exit 0; 7 | 8 | else 9 | # Proceed with the build 10 | echo "✅ - Build can proceed" 11 | exit 1; 12 | fi 13 | 14 | if [ -d "website/_site" ]; then 15 | git diff --quiet HEAD^ HEAD ../../website/_site 16 | fi 17 | -------------------------------------------------------------------------------- /website/_site/styles.css: -------------------------------------------------------------------------------- 1 | /* css styles */ 2 | .quarto-title-banner { 3 | background: #6C6D87 4 | } 5 | 6 | .navbar-dark { 7 | background-color: #6C6D87 8 | } 9 | 10 | pre { 11 | border: 1px solid #dddddd; 12 | padding: 4px 4px 4px 4px; 13 | border-radius: 6px; 14 | white-space: pre-wrap; 15 | word-wrap: break-word; 16 | background-color: #c3c3c342; 17 | margin-top: 5px; 18 | margin-bottom: 15px; 19 | } -------------------------------------------------------------------------------- /website/_site/theme/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Redirect 4 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /website/_site/beam/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Redirect 4 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /website/_site/theme/beamer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Redirect 4 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /website/_site/beamer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Redirect 4 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /website/_site/border/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Redirect 4 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /website/_site/gradient/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Redirect 4 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /website/_site/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | https://marp-community-themes.vercel.app/theme/beam.html 5 | 2023-05-06T13:57:07.709Z 6 | 7 | 8 | https://marp-community-themes.vercel.app/index.html 9 | 2023-05-06T13:50:11.547Z 10 | 11 | 12 | https://marp-community-themes.vercel.app/theme/border.html 13 | 2023-05-06T13:58:03.013Z 14 | 15 | 16 | https://marp-community-themes.vercel.app/theme/gradient.html 17 | 2023-05-06T13:58:12.878Z 18 | 19 | 20 | -------------------------------------------------------------------------------- /themes/README.md: -------------------------------------------------------------------------------- 1 | This directory contains all the CSS themes together with their respective licenses. The main objectives of centralizing all of the CSS files in one directory are to facilitate accessibility and ensure future compatibility, while still maintaining the deserved recognition of the original repositories for each individual author. 2 | 3 | Firstly, having all themes in one folder is simply convenient. The structure is predictable and users can simply utilize the entire gallery in one place. 4 | 5 | Secondly, any minor modifications made to the original repositories may result in broken links, which is certainly undesirable. Moreover, I believe that linking the CSS files directly does not lower the traffic and attention each author gets. Each raw CSS file is a *dead end* which links to the original repository potentially only through the URL. To nudge the users in showing support to the authors of the themes they like, I further included a message in the description of the theme asking them to star the repository of the respective themes. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022-2023 rnd195 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /themes/licenses/LICENSE_border: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 rnd195 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /themes/licenses/LICENSE_gradient: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 rnd195 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /themes/licenses/LICENSE_graph_paper: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 rnd195 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /themes/licenses/LICENSE_academic: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Kaito Sugimoto 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /themes/licenses/LICENSE_rose-pine: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Rosé Pine For Marp 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /website/_site/site_libs/quarto-html/tippy.css: -------------------------------------------------------------------------------- 1 | .tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} -------------------------------------------------------------------------------- /template/template.md: -------------------------------------------------------------------------------- 1 | --- 2 | marp: true 3 | paginate: true 4 | theme: graph_paper 5 | size: 4:3 6 | header: This is a header 7 | footer: This is a footer 8 | title: Testing MD file 9 | --- 10 | 11 | # Title of the presentation 12 | 13 | Author's name 14 | University of XYZ 15 | 2023-05-13 16 | 17 | --- 18 | 19 | # Text 20 | 21 | **Lorem ipsum** dolor sit amet, *consectetur adipiscing* elit. Nunc eu ante ~~sit amet~~ erat suscipit consectetur. Praesent efficitur sollicitudin nisi. 22 | 23 | > Vestibulum et ipsum et nibh egestas molestie sed vel orci. 24 | 25 | --- 26 | 27 | # Heading 1 28 | 29 | ## Heading 2 30 | 31 | ### Heading 3 32 | 33 | --- 34 | 35 | # Lists 36 | 37 | 1. This is the first step 38 | 2. Followed by the second step 39 | 40 | - Point one 41 | - Point two 42 | - Sub-point two 43 | 44 | --- 45 | 46 | # Image 47 | 48 | An image of a flower in our garden. 49 | 50 | ![center](flower.jpg) 51 | 52 | Not centered by default. Writing `center` in the alt text aligns the image, i.e. `![center](flower.jpg)`. 53 | 54 | --- 55 | 56 | # Code 57 | 58 | Inline code: `print("Hello")` 59 | 60 | ```r 61 | for (i in 1:100) { 62 | print(i) 63 | } 64 | ``` 65 | 66 | --- 67 | 68 | # Math 69 | 70 | $$ 71 | f(x) = \frac{1}{\sigma \sqrt{2\pi}} e^{-0.5 \left( \frac{x-\mu}{\sigma} \right)^2} 72 | $$ 73 | 74 | --- 75 | 76 | # Table 77 | 78 | | Customer ID | Attribute X | Attribute Y | 79 | | ----------- | ----------- | ----------- | 80 | | 101 | 3 | 0.1 | 81 | | 102 | 4 | 0.1 | 82 | | 103 | 2 | 0.3 | 83 | 84 | --- 85 | 86 | # Tinytext class 87 | 88 | Use `` to make the text on the slide tiny. Might be useful for references at the end of the presentation. 89 | -------------------------------------------------------------------------------- /themes/border.css: -------------------------------------------------------------------------------- 1 | /* @theme border */ 2 | /* Author: rnd195 https://github.com/rnd195/ */ 3 | /* MIT license https://github.com/rnd195/my-marp-themes/blob/live/licenses/LICENSE */ 4 | 5 | @import "default"; 6 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap'); 7 | 8 | :root { 9 | font-family: Inter, Helvetica, Arial; 10 | --border-color: #303030; 11 | --text-color: #0a0a0a; 12 | --bg-color-alt: #dadada; 13 | --mark-background: #ffef92; 14 | } 15 | 16 | section { 17 | background-image: linear-gradient(to bottom right, #f7f7f7 0%, #d3d3d3 100%); 18 | border: 1.3em solid var(--border-color); 19 | outline: 1em solid #ffffff; 20 | outline-offset: -0.5em; 21 | } 22 | 23 | h1, 24 | h2, 25 | h3, 26 | h4, 27 | h5, 28 | h6 { 29 | color: var(--text-color); 30 | } 31 | 32 | code { 33 | background-color: rgba(100, 100, 100, 0.2); 34 | } 35 | 36 | /* https://github.com/yhatt/marp/issues/263 */ 37 | section::after { 38 | font-size: 0.75em; 39 | content: attr(data-marpit-pagination) " / " attr(data-marpit-pagination-total); 40 | } 41 | 42 | /* the "center" keyword centers the image - may break, careful */ 43 | /* https://github.com/marp-team/marpit/issues/141#issuecomment-473204518 */ 44 | img[alt~="center"] { 45 | display: block; 46 | margin: 0 auto; 47 | } 48 | 49 | blockquote { 50 | background: var(--bg-color-alt); 51 | border-left: 10px solid var(--border-color); 52 | margin: 0.5em; 53 | padding: 0.5em; 54 | } 55 | 56 | /* inspired by the Fluent Typora theme github.com/li3zhen1/Fluent-Typora */ 57 | mark { 58 | background-color: var(--mark-background); 59 | padding: 0 2px 2px; 60 | border-radius: 4px; 61 | margin: 0 2px; 62 | } 63 | 64 | /* || SECTION CLASS: tinytext */ 65 | /* new class that makes p, ul, and blockquote text smaller */ 66 | /* might be useful for the References slide, use */ 67 | section.tinytext>p, 68 | section.tinytext>ul, 69 | section.tinytext>blockquote { 70 | font-size: 0.65em; 71 | } -------------------------------------------------------------------------------- /themes/gradient.css: -------------------------------------------------------------------------------- 1 | /* @theme gradient */ 2 | /* Author: rnd195 https://github.com/rnd195/ */ 3 | /* MIT license https://github.com/rnd195/my-marp-themes/blob/live/licenses/LICENSE */ 4 | 5 | @import "default"; 6 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap'); 7 | 8 | :root { 9 | font-family: Inter, Helvetica, Arial; 10 | } 11 | 12 | section { 13 | background-color: #ffffff; 14 | background-image: linear-gradient(to top right, #e1c2e1 5%, #b9d5d9 95%); 15 | } 16 | 17 | h1, 18 | h2, 19 | h3, 20 | h4, 21 | h5, 22 | h6 { 23 | color: #842174; 24 | } 25 | 26 | a { 27 | color: #9d30a6; 28 | } 29 | 30 | code { 31 | background-color: #ffffffad; 32 | } 33 | 34 | mark { 35 | background-color: #eaa2ee; 36 | padding: 0 2px 2px; 37 | } 38 | 39 | pre { 40 | background-color: #ffffffad; 41 | } 42 | 43 | /* https://github.com/yhatt/marp/issues/263 */ 44 | section::after { 45 | font-size: 0.75em; 46 | content: attr(data-marpit-pagination) " / " attr(data-marpit-pagination-total); 47 | } 48 | 49 | /* the "center" keyword centers the image - may break, careful */ 50 | /* https://github.com/marp-team/marpit/issues/141#issuecomment-473204518 */ 51 | img[alt~="center"] { 52 | display: block; 53 | margin: 0 auto; 54 | } 55 | 56 | /* || SECTION CLASS: blue */ 57 | section.blue { 58 | background-color: #ffffff; 59 | background-image: linear-gradient(to bottom right, #cadaf7 5%, #87a7e4 95%); 60 | } 61 | 62 | section.blue>h1, 63 | section.blue>h2, 64 | section.blue>h3, 65 | section.blue>h4, 66 | section.blue>h5, 67 | section.blue>h6 { 68 | color: #214484; 69 | } 70 | 71 | section.blue>a { 72 | color: #303ca6; 73 | } 74 | 75 | section.blue::after, 76 | section.blue>footer, 77 | section.blue>header { 78 | color: #303ca6; 79 | } 80 | 81 | /* || SECTION CLASS: tinytext */ 82 | /* new class that makes p, ul, and blockquote text smaller */ 83 | /* might be useful for the References slide, use */ 84 | section.tinytext>p, 85 | section.tinytext>ul, 86 | section.tinytext>blockquote { 87 | font-size: 0.65em; 88 | } -------------------------------------------------------------------------------- /themes/graph_paper.css: -------------------------------------------------------------------------------- 1 | /* @theme graph_paper */ 2 | /* Author: rnd195 https://github.com/rnd195/ */ 3 | /* MIT license https://github.com/rnd195/my-marp-themes/blob/live/licenses/LICENSE */ 4 | 5 | @import "default"; 6 | @import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap'); 7 | 8 | :root { 9 | font-family: "Work Sans Regular", Arial; 10 | --main-color: #040014; 11 | --text-color: #121114; 12 | --bg-color-alt: #dadada; 13 | --mark-background: #98d6ff; 14 | } 15 | 16 | section { 17 | background-color: #e3e3f1; 18 | background-size: 20px 20px; 19 | background-image: linear-gradient(#3f32af18 1px, transparent 1px), linear-gradient(to right, #ccc89536 1px, #d8d8e62d 1px); 20 | } 21 | 22 | h1, 23 | h2, 24 | h3, 25 | h4, 26 | h5, 27 | h6 { 28 | color: var(--text-color); 29 | } 30 | 31 | header { 32 | font-size: 0.7em; 33 | color: var(--text-color); 34 | border-bottom: 1px solid #040014; 35 | } 36 | 37 | footer { 38 | font-size: 0.7em; 39 | color: var(--text-color); 40 | border-top: 1px solid #040014; 41 | } 42 | 43 | code { 44 | background-color: #ffffff; 45 | font-size: 0.9em 46 | } 47 | 48 | pre { 49 | background-color: #ffffff; 50 | } 51 | 52 | /* https://github.com/yhatt/marp/issues/263 */ 53 | section::after { 54 | font-size: 0.75em; 55 | content: attr(data-marpit-pagination) " / " attr(data-marpit-pagination-total); 56 | color: var(--text-color); 57 | } 58 | 59 | /* the "center" keyword centers the image - may break, careful */ 60 | /* https://github.com/marp-team/marpit/issues/141#issuecomment-473204518 */ 61 | img[alt~="center"] { 62 | display: block; 63 | margin: 0 auto; 64 | } 65 | 66 | blockquote { 67 | background: #ffffff; 68 | border-left: 10px solid var(--main-color); 69 | margin: 0.5em; 70 | padding: 0.5em; 71 | } 72 | 73 | mark { 74 | background-color: var(--mark-background); 75 | padding: 0 2px 2px; 76 | } 77 | 78 | table { 79 | display: block; 80 | margin: 0 auto; 81 | } 82 | 83 | th { 84 | background-color: #8ea2af; 85 | color: white; 86 | } 87 | 88 | /* || SECTION CLASS: tinytext */ 89 | /* new class that makes p, ul, and blockquote text smaller */ 90 | /* might be useful for the References slide, use */ 91 | section.tinytext>p, 92 | section.tinytext>ul, 93 | section.tinytext>blockquote { 94 | font-size: 0.65em; 95 | } -------------------------------------------------------------------------------- /themes/academic.css: -------------------------------------------------------------------------------- 1 | /* @theme academic */ 2 | /* Author: kaisugi https://github.com/kaisugi/ */ 3 | /* MIT license https://github.com/kaisugi/marp-theme-academic/blob/main/LICENSE */ 4 | 5 | @import 'gaia'; 6 | @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap'); 7 | @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap'); 8 | 9 | :root { 10 | --color-background: #fff; 11 | --color-foreground: #333; 12 | --color-highlight: #800000; 13 | } 14 | 15 | section { 16 | background-image: none; 17 | font-family: 'Noto Sans JP', sans-serif; 18 | padding-top: 90px; 19 | padding-left: 40px; 20 | padding-right: 40px; 21 | } 22 | 23 | /* https://github.com/marp-team/marpit/issues/271 */ 24 | section::after { 25 | font-weight: 700; 26 | content: attr(data-marpit-pagination) '/' attr(data-marpit-pagination-total); 27 | } 28 | 29 | ul ul { 30 | font-size: 0.9em; 31 | } 32 | 33 | section.lead h1 { 34 | color: #800000; 35 | text-align: left; 36 | } 37 | section.lead h1 strong { 38 | -webkit-text-stroke: 1px #800000; 39 | } 40 | section.lead h2 { 41 | color: #800000; 42 | text-align: left; 43 | } 44 | section.lead h2 strong { 45 | -webkit-text-stroke: 1px #800000; 46 | } 47 | section.lead h3 { 48 | color: #800000; 49 | text-align: left; 50 | } 51 | section.lead h3 strong { 52 | -webkit-text-stroke: 1px #800000; 53 | } 54 | section.lead h4 { 55 | color: #800000; 56 | text-align: left; 57 | } 58 | section.lead h4 strong { 59 | -webkit-text-stroke: 1px #800000; 60 | } 61 | section.lead h5 { 62 | color: #800000; 63 | text-align: left; 64 | } 65 | section.lead h5 strong { 66 | -webkit-text-stroke: 1px #800000; 67 | } 68 | section.lead p { 69 | text-align: right; 70 | } 71 | 72 | header { 73 | background-color: #800000; 74 | color: #fff; 75 | font-size: 1em; 76 | font-weight: 700; 77 | } 78 | 79 | blockquote { 80 | max-width: 90%; 81 | border-top: 0.1em dashed #555; 82 | font-size: 60%; 83 | position: absolute; 84 | bottom: 20px; 85 | } 86 | blockquote::before { 87 | content: ""; 88 | } 89 | blockquote::after { 90 | content: ""; 91 | } 92 | 93 | img[alt~="center"] { 94 | display: block; 95 | margin: 0 auto; 96 | } 97 | 98 | code { 99 | font-family: 'Source Code Pro', monospace; 100 | } 101 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Marp Community Themes 2 | 3 | This is a community-maintained theme gallery for [Marp](https://marp.app/). For more information about how to create themes for Marp, see the official [documentation](https://marpit.marp.app/theme-css). 4 | 5 | The website is built using [Quarto](https://quarto.org/) and it is inspired by the Typora [theme gallery](https://theme.typora.io/). 6 | 7 | Feel free to provide any suggestions in the issues tab. Please note that this theme gallery is an independent, community-maintained project and is not affiliated with the official Marp project. 8 | 9 | # Installation / Usage 10 | 11 | After clicking the "Download CSS" button on any theme's page, your browser likely loads the `.css` file instead of downloading it. You can save the `.css` file locally using `Ctrl + S`. 12 | 13 | ### Marp for VS Code Extension 14 | 15 | 1. Open Settings in VSCode (`Ctrl + ,`) 16 | 2. Search for `markdown.marp.themes` 17 | 3. Add a URL or a local path to the `.css` file 18 | - URL: refer to [this discussion](https://stackoverflow.com/questions/17341122/link-and-execute-external-javascript-file-hosted-on-github/) about linking to files on GitHub 19 | - Local path example: `./assets/theme_name.css` (theme needs to be somewhere in the project's directory) 20 | 21 | 4. Enable the theme in the front-matter of the Markdown document, i.e., write the following at the very beginning of the Markdown document: 22 | 23 | ``` 24 | --- 25 | marp: true 26 | theme: theme_name 27 | --- 28 | ``` 29 | 30 | For additional settings (such as `size` or `paginate`), follow the [official documentation](https://github.com/marp-team/marp/blob/main/website/docs/guide/directives.md). 31 | 32 | ### Marp CLI 33 | 34 | 1. Put the `.css` theme file in the directory of your Markdown document 35 | 2. Use the `--theme` parameter during the export and specify the path to the `.css` file 36 | - e.g.: 37 | 38 | ``` 39 | marp --theme ./assets/theme_name.css document.md -o document.pdf 40 | ``` 41 | 42 | 43 | 44 | # Submitting themes 45 | 46 | Work in progress. Not accepting submissions at the moment, sorry. 47 | 48 | 49 | 50 | # License 51 | 52 | This software is licensed under the [MIT License](https://github.com/rnd195/marp-community-themes/blob/live/LICENSE). License files of the featured themes can be found in the `themes/licenses/` directory. 53 | 54 | 55 | 56 | # Privacy notice 57 | 58 | Please, be aware that some of the featured themes import fonts from the Google Fonts service. Refer to their [Privacy FAQ](https://developers.google.com/fonts/faq/privacy) for more information. 59 | -------------------------------------------------------------------------------- /themes/rose-pine.css: -------------------------------------------------------------------------------- 1 | /* @theme rose-pine */ 2 | /* 3 | Rosé Pine theme create by RAINBOWFLESH 4 | > www.rosepinetheme.com 5 | MIT License https://github.com/rainbowflesh/Rose-Pine-For-Marp/blob/master/license 6 | 7 | palette in :root 8 | */ 9 | 10 | @import "default"; 11 | @import "schema"; 12 | @import "structure"; 13 | 14 | :root { 15 | --base: #191724; 16 | --surface: #1f1d2e; 17 | --overlay: #26233a; 18 | --muted: #6e6a86; 19 | --subtle: #908caa; 20 | --text: #e0def4; 21 | --love: #eb6f92; 22 | --gold: #f6c177; 23 | --rose: #ebbcba; 24 | --pine: #31748f; 25 | --foam: #9ccfd8; 26 | --iris: #c4a7e7; 27 | --highlight-low: #21202e; 28 | --highlight-muted: #403d52; 29 | --highlight-high: #524f67; 30 | 31 | font-family: Pier Sans, ui-sans-serif, system-ui, -apple-system, 32 | BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, 33 | sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, 34 | "Noto Color Emoji"; 35 | font-weight: initial; 36 | 37 | background-color: var(--base); 38 | } 39 | /* Common style */ 40 | h1 { 41 | color: var(--rose); 42 | padding-bottom: 2mm; 43 | margin-bottom: 12mm; 44 | } 45 | h2 { 46 | color: var(--rose); 47 | } 48 | h3 { 49 | color: var(--rose); 50 | } 51 | h4 { 52 | color: var(--rose); 53 | } 54 | h5 { 55 | color: var(--rose); 56 | } 57 | h6 { 58 | color: var(--rose); 59 | } 60 | a { 61 | color: var(--iris); 62 | } 63 | p { 64 | font-size: 20pt; 65 | font-weight: 600; 66 | color: var(--text); 67 | } 68 | code { 69 | color: var(--text); 70 | background-color: var(--highlight-muted); 71 | } 72 | text { 73 | color: var(--text); 74 | } 75 | ul { 76 | color: var(--subtle); 77 | } 78 | li { 79 | color: var(--subtle); 80 | } 81 | img { 82 | background-color: var(--highlight-low); 83 | } 84 | strong { 85 | color: var(--text); 86 | font-weight: inherit; 87 | font-weight: 800; 88 | } 89 | mjx-container { 90 | color: var(--text); 91 | } 92 | marp-pre { 93 | background-color: var(--overlay); 94 | border-color: var(--highlight-high); 95 | } 96 | 97 | /* Code blok */ 98 | .hljs-comment { 99 | color: var(--muted); 100 | } 101 | .hljs-attr { 102 | color: var(--foam); 103 | } 104 | .hljs-punctuation { 105 | color: var(--subtle); 106 | } 107 | .hljs-string { 108 | color: var(--gold); 109 | } 110 | .hljs-title { 111 | color: var(--foam); 112 | } 113 | .hljs-keyword { 114 | color: var(--pine); 115 | } 116 | .hljs-variable { 117 | color: var(--text); 118 | } 119 | .hljs-literal { 120 | color: var(--rose); 121 | } 122 | .hljs-type { 123 | color: var(--love); 124 | } 125 | .hljs-number { 126 | color: var(--gold); 127 | } 128 | .hljs-built_in { 129 | color: var(--love); 130 | } 131 | .hljs-params { 132 | color: var(--iris); 133 | } 134 | .hljs-symbol { 135 | color: var(--foam); 136 | } 137 | .hljs-meta { 138 | color: var(--subtle); 139 | } 140 | -------------------------------------------------------------------------------- /template/submission_template.md: -------------------------------------------------------------------------------- 1 | --- 2 | # This is the front-matter. The framework used for building the website uses these parameters to generate the pages. Feel free to delete all the comments. 3 | 4 | # Name of the theme 5 | title: MyTheme 6 | 7 | # Thumbnail visible on the main page. This is a folder inside the repository. Aim for an 800x600px image 8 | image: /thumbnail/MyTheme.png 9 | 10 | # Future link to the theme on the website (e.g., this corresponds to marp-community-themes.vercel.app/MyTheme) 11 | link: /MyTheme 12 | 13 | # The name / username of the author 14 | authorname: Name of the author 15 | 16 | # The website of the author (your personal web, Github profile, mail, ...) 17 | authorpage: https://github.com/username/ 18 | 19 | # Homepage of the project (preferably on Github) 20 | projecthomepage: https://github.com/username/marp-theme-repository 21 | 22 | # Future link to the CSS file in the marp-community-themes repository. You only need to change the very last part of the URL 23 | csslink: https://raw.githubusercontent.com/rnd195/marp-community-themes/main/themes/MyTheme.css 24 | 25 | # License of the theme 26 | license: https://github.com/username/marp-theme-repository/blob/main/LICENSE 27 | --- 28 | 29 | Write a short description of the theme here, perhaps mention projects that your theme is based on… 30 | 31 | # Custom classes and keywords 32 | 33 | If your theme is using any custom classes or keywords, feel free to mention them here. 34 | 35 | Examples: 36 | 37 | `` 38 | 39 | - Makes most text on the slide much smaller. 40 | - Might be useful for references. 41 | 42 | `![center](image.jpg)` 43 | 44 | - By default, images are left-aligned. 45 | - The `center` keywords centers the image. 46 | 47 | # Screenshots 48 | 49 | This is probably the most important part. Put up screenshots of your theme here (up to 10 pictures). You may use the [`template/template.md`](https://github.com/rnd195/marp-community-themes/blob/main/template/template.md) file for the screenshots or basically any screenshots which highlight the features of your theme. 50 | 51 | - Try to aim for `800x600px` images for the 4:3 size and around `1067x600px` images for the 16:9 size 52 | 53 | - Put the images in a theme-specific folder (`MyTheme.assets`) in the same directory as the Markdown file for your theme 54 | - Use the standard Markdown syntax for images: `![Alt text](/MyTheme.assets/screenshot1.jpg)` and make sure that the path begins with "/". Your Markdown editor may not show the image, but the website will. 55 | 56 | All in all, the structure of the directory with all the files needed for submission may look something like this: 57 | 58 | ``` 59 | MyTheme.assets/ # Folder with N screenshots 60 | ├── screenshot1.jpg 61 | ├── screenshot2.jpg 62 | ├── ... 63 | └── screenshotN.jpg 64 | thumbnail/ 65 | └── MyTheme.jpg # Screenshot used as a thumbnail 66 | MyTheme.md # Markdown file about your theme 67 | MyTheme.css # The CSS file of your theme 68 | ``` 69 | 70 | See [issue #1](https://github.com/rnd195/marp-community-themes/issues/1) for a complete submission example. 71 | -------------------------------------------------------------------------------- /themes/rose-pine-dawn.css: -------------------------------------------------------------------------------- 1 | /* @theme rose-pine-dawn */ 2 | /* 3 | Rosé Pine theme create by RAINBOWFLESH 4 | > www.rosepinetheme.com 5 | MIT License https://github.com/rainbowflesh/Rose-Pine-For-Marp/blob/master/license 6 | 7 | palette in :root 8 | */ 9 | 10 | @import "default"; 11 | @import "schema"; 12 | @import "structure"; 13 | 14 | :root { 15 | --base: #faf4ed; 16 | --surface: #fffaf3; 17 | --overlay: #f2e9e1; 18 | --muted: #9893a5; 19 | --subtle: #797593; 20 | --text: #575279; 21 | --love: #b4637a; 22 | --gold: #ea9d34; 23 | --rose: #d7827e; 24 | --pine: #286983; 25 | --foam: #56949f; 26 | --iris: #907aa9; 27 | --highlight-low: #f4ede8; 28 | --highlight-muted: #dfdad9; 29 | --highlight-high: #cecacd; 30 | 31 | font-family: Pier Sans, ui-sans-serif, system-ui, -apple-system, 32 | BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, 33 | sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, 34 | "Noto Color Emoji"; 35 | font-weight: initial; 36 | 37 | background-color: var(--base); 38 | } 39 | /* Common style */ 40 | h1 { 41 | color: var(--rose); 42 | padding-bottom: 2mm; 43 | margin-bottom: 12mm; 44 | } 45 | h2 { 46 | color: var(--rose); 47 | } 48 | h3 { 49 | color: var(--rose); 50 | } 51 | h4 { 52 | color: var(--rose); 53 | } 54 | h5 { 55 | color: var(--rose); 56 | } 57 | h6 { 58 | color: var(--rose); 59 | } 60 | a { 61 | color: var(--iris); 62 | } 63 | p { 64 | font-size: 20pt; 65 | font-weight: 600; 66 | color: var(--text); 67 | } 68 | code { 69 | color: var(--text); 70 | background-color: var(--highlight-muted); 71 | } 72 | text { 73 | color: var(--text); 74 | } 75 | ul { 76 | color: var(--subtle); 77 | } 78 | li { 79 | color: var(--subtle); 80 | } 81 | img { 82 | background-color: var(--highlight-low); 83 | } 84 | strong { 85 | color: var(--text); 86 | font-weight: inherit; 87 | font-weight: 800; 88 | } 89 | mjx-container { 90 | color: var(--text); 91 | } 92 | marp-pre { 93 | background-color: var(--overlay); 94 | border-color: var(--highlight-high); 95 | } 96 | 97 | /* Code blok */ 98 | .hljs-comment { 99 | color: var(--muted); 100 | } 101 | .hljs-attr { 102 | color: var(--foam); 103 | } 104 | .hljs-punctuation { 105 | color: var(--subtle); 106 | } 107 | .hljs-string { 108 | color: var(--gold); 109 | } 110 | .hljs-title { 111 | color: var(--foam); 112 | } 113 | .hljs-keyword { 114 | color: var(--pine); 115 | } 116 | .hljs-variable { 117 | color: var(--text); 118 | } 119 | .hljs-literal { 120 | color: var(--rose); 121 | } 122 | .hljs-type { 123 | color: var(--love); 124 | } 125 | .hljs-number { 126 | color: var(--gold); 127 | } 128 | .hljs-built_in { 129 | color: var(--love); 130 | } 131 | .hljs-params { 132 | color: var(--iris); 133 | } 134 | .hljs-symbol { 135 | color: var(--foam); 136 | } 137 | .hljs-meta { 138 | color: var(--subtle); 139 | } 140 | -------------------------------------------------------------------------------- /themes/rose-pine-moon.css: -------------------------------------------------------------------------------- 1 | /* @theme rose-pine-moon */ 2 | /* 3 | Rosé Pine theme create by RAINBOWFLESH 4 | > www.rosepinetheme.com 5 | MIT License https://github.com/rainbowflesh/Rose-Pine-For-Marp/blob/master/license 6 | 7 | palette in :root 8 | */ 9 | 10 | @import "default"; 11 | @import "schema"; 12 | @import "structure"; 13 | 14 | :root { 15 | --base: #232136; 16 | --surface: #2a273f; 17 | --overlay: #393552; 18 | --muted: #6e6a86; 19 | --subtle: #908caa; 20 | --text: #e0def4; 21 | --love: #eb6f92; 22 | --gold: #f6c177; 23 | --rose: #ea9a97; 24 | --pine: #3e8fb0; 25 | --foam: #9ccfd8; 26 | --iris: #c4a7e7; 27 | --highlight-low: #2a283e; 28 | --highlight-muted: #44415a; 29 | --highlight-high: #56526e; 30 | 31 | font-family: Pier Sans, ui-sans-serif, system-ui, -apple-system, 32 | BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, 33 | sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, 34 | "Noto Color Emoji"; 35 | font-weight: initial; 36 | 37 | background-color: var(--base); 38 | } 39 | /* Common style */ 40 | h1 { 41 | color: var(--rose); 42 | padding-bottom: 2mm; 43 | margin-bottom: 12mm; 44 | } 45 | h2 { 46 | color: var(--rose); 47 | } 48 | h3 { 49 | color: var(--rose); 50 | } 51 | h4 { 52 | color: var(--rose); 53 | } 54 | h5 { 55 | color: var(--rose); 56 | } 57 | h6 { 58 | color: var(--rose); 59 | } 60 | a { 61 | color: var(--iris); 62 | } 63 | p { 64 | font-size: 20pt; 65 | font-weight: 600; 66 | color: var(--text); 67 | } 68 | code { 69 | color: var(--text); 70 | background-color: var(--highlight-muted); 71 | } 72 | text { 73 | color: var(--text); 74 | } 75 | ul { 76 | color: var(--subtle); 77 | } 78 | li { 79 | color: var(--subtle); 80 | } 81 | img { 82 | background-color: var(--highlight-low); 83 | } 84 | strong { 85 | color: var(--text); 86 | font-weight: inherit; 87 | font-weight: 800; 88 | } 89 | mjx-container { 90 | color: var(--text); 91 | } 92 | marp-pre { 93 | background-color: var(--overlay); 94 | border-color: var(--highlight-high); 95 | } 96 | 97 | /* Code blok */ 98 | .hljs-comment { 99 | color: var(--muted); 100 | } 101 | .hljs-attr { 102 | color: var(--foam); 103 | } 104 | .hljs-punctuation { 105 | color: var(--subtle); 106 | } 107 | .hljs-string { 108 | color: var(--gold); 109 | } 110 | .hljs-title { 111 | color: var(--foam); 112 | } 113 | .hljs-keyword { 114 | color: var(--pine); 115 | } 116 | .hljs-variable { 117 | color: var(--text); 118 | } 119 | .hljs-literal { 120 | color: var(--rose); 121 | } 122 | .hljs-type { 123 | color: var(--love); 124 | } 125 | .hljs-number { 126 | color: var(--gold); 127 | } 128 | .hljs-built_in { 129 | color: var(--love); 130 | } 131 | .hljs-params { 132 | color: var(--iris); 133 | } 134 | .hljs-symbol { 135 | color: var(--foam); 136 | } 137 | .hljs-meta { 138 | color: var(--subtle); 139 | } 140 | -------------------------------------------------------------------------------- /website/_site/search.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "objectID": "index.html", 4 | "href": "index.html", 5 | "title": "Marp Community Themes", 6 | "section": "", 7 | "text": "Order By\n Default\n \n Title\n \n \n Date - Oldest\n \n \n Date - Newest\n \n \n Author\n \n \n \n\n\n\n\n\n\n\n\n\n\nBeam\n\n\n\nrnd195\n\n\nMar 26, 2022\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nBorder\n\n\n\nrnd195\n\n\nMar 26, 2022\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGradient\n\n\n\nrnd195\n\n\nMar 26, 2022\n\n\n\n\n\n\n\n\nNo matching items" 8 | }, 9 | { 10 | "objectID": "theme/beam.html", 11 | "href": "theme/beam.html", 12 | "title": "Beam", 13 | "section": "", 14 | "text": "The beam theme tries to mimic the look of LaTeX’s beamer class. As such, it is intended to be used with the Computer Modern Unicode font family. It also provides support for a title page. To change the default colors from blue to anything else, please, follow the guide in the Github repository of the theme.\n\nScreenshots\n\n\n<!-- _class: title --> needs to be specified for the first slide to look like this. Here is an example of what it could look like\n\n---\nmarp: true\ntheme: beam\n---\n<!-- _class: title -->\n# Title of the presentation\nAuthor's name\nUniversity of XYZ\n2022-06-19\n\n\n\n\n\n\n\n\n\n\nCustom classes and keywords\n<!-- _class: title -->\n\nChanges the layout of the slide to a title page.\nThe first Heading 1 will be styled as the title.\nMake sure to include the underscore “_” so that your whole presentation is not made up of title pages.\nThe title should be no more than 2 lines long, otherwise, it spills over other text.\n\n<!-- _class: tinytext -->\n\nMakes most text on the slide much smaller.\nMight be useful for references.\n\n![center](image.jpg)\n\nBy default, images are left-aligned.\nThe center keywords centers the image.\n\n\n\nLicense\nThe beamer-inspired beam theme is licensed under GNU GPLv3." 15 | }, 16 | { 17 | "objectID": "theme/border.html", 18 | "href": "theme/border.html", 19 | "title": "Border", 20 | "section": "", 21 | "text": "This theme is based on the default Marp theme but has some notable changes. Each slide has a dark-gray border and also a white-to-gray linear gradient as its background. As the main font, the Inter font family is used. For more changes, see the screenshots below.\n\nScreenshots\n\n\n\n\n\n\n\n\n\n\n\nCustom classes and keywords\n<!-- _class: tinytext -->\n\nMakes most text on the slide much smaller.\nMight be useful for references.\n\n![center](image.jpg)\n\nBy default, images are left-aligned.\nThe center keywords centers the image.\n\n\n\nLicense\nThis theme is licensed under the MIT License." 22 | }, 23 | { 24 | "objectID": "theme/gradient.html", 25 | "href": "theme/gradient.html", 26 | "title": "Gradient", 27 | "section": "", 28 | "text": "This theme is based on the default Marp theme. The background on each slide is a colorful gradient. As the main font, the Inter font family is used. For more, see the screenshots below." 29 | }, 30 | { 31 | "objectID": "theme/gradient.html#class-blue", 32 | "href": "theme/gradient.html#class-blue", 33 | "title": "Gradient", 34 | "section": "class: blue", 35 | "text": "class: blue" 36 | }, 37 | { 38 | "objectID": "theme/gradient.html#class-default", 39 | "href": "theme/gradient.html#class-default", 40 | "title": "Gradient", 41 | "section": "class: default", 42 | "text": "class: default" 43 | } 44 | ] -------------------------------------------------------------------------------- /website/_site/site_libs/quarto-html/quarto-syntax-highlighting.css: -------------------------------------------------------------------------------- 1 | /* quarto syntax highlight colors */ 2 | :root { 3 | --quarto-hl-ot-color: #003B4F; 4 | --quarto-hl-at-color: #657422; 5 | --quarto-hl-ss-color: #20794D; 6 | --quarto-hl-an-color: #5E5E5E; 7 | --quarto-hl-fu-color: #4758AB; 8 | --quarto-hl-st-color: #20794D; 9 | --quarto-hl-cf-color: #003B4F; 10 | --quarto-hl-op-color: #5E5E5E; 11 | --quarto-hl-er-color: #AD0000; 12 | --quarto-hl-bn-color: #AD0000; 13 | --quarto-hl-al-color: #AD0000; 14 | --quarto-hl-va-color: #111111; 15 | --quarto-hl-bu-color: inherit; 16 | --quarto-hl-ex-color: inherit; 17 | --quarto-hl-pp-color: #AD0000; 18 | --quarto-hl-in-color: #5E5E5E; 19 | --quarto-hl-vs-color: #20794D; 20 | --quarto-hl-wa-color: #5E5E5E; 21 | --quarto-hl-do-color: #5E5E5E; 22 | --quarto-hl-im-color: #00769E; 23 | --quarto-hl-ch-color: #20794D; 24 | --quarto-hl-dt-color: #AD0000; 25 | --quarto-hl-fl-color: #AD0000; 26 | --quarto-hl-co-color: #5E5E5E; 27 | --quarto-hl-cv-color: #5E5E5E; 28 | --quarto-hl-cn-color: #8f5902; 29 | --quarto-hl-sc-color: #5E5E5E; 30 | --quarto-hl-dv-color: #AD0000; 31 | --quarto-hl-kw-color: #003B4F; 32 | } 33 | 34 | /* other quarto variables */ 35 | :root { 36 | --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 37 | } 38 | 39 | pre > code.sourceCode > span { 40 | color: #003B4F; 41 | } 42 | 43 | code span { 44 | color: #003B4F; 45 | } 46 | 47 | code.sourceCode > span { 48 | color: #003B4F; 49 | } 50 | 51 | div.sourceCode, 52 | div.sourceCode pre.sourceCode { 53 | color: #003B4F; 54 | } 55 | 56 | code span.ot { 57 | color: #003B4F; 58 | font-style: inherit; 59 | } 60 | 61 | code span.at { 62 | color: #657422; 63 | font-style: inherit; 64 | } 65 | 66 | code span.ss { 67 | color: #20794D; 68 | font-style: inherit; 69 | } 70 | 71 | code span.an { 72 | color: #5E5E5E; 73 | font-style: inherit; 74 | } 75 | 76 | code span.fu { 77 | color: #4758AB; 78 | font-style: inherit; 79 | } 80 | 81 | code span.st { 82 | color: #20794D; 83 | font-style: inherit; 84 | } 85 | 86 | code span.cf { 87 | color: #003B4F; 88 | font-style: inherit; 89 | } 90 | 91 | code span.op { 92 | color: #5E5E5E; 93 | font-style: inherit; 94 | } 95 | 96 | code span.er { 97 | color: #AD0000; 98 | font-style: inherit; 99 | } 100 | 101 | code span.bn { 102 | color: #AD0000; 103 | font-style: inherit; 104 | } 105 | 106 | code span.al { 107 | color: #AD0000; 108 | font-style: inherit; 109 | } 110 | 111 | code span.va { 112 | color: #111111; 113 | font-style: inherit; 114 | } 115 | 116 | code span.bu { 117 | font-style: inherit; 118 | } 119 | 120 | code span.ex { 121 | font-style: inherit; 122 | } 123 | 124 | code span.pp { 125 | color: #AD0000; 126 | font-style: inherit; 127 | } 128 | 129 | code span.in { 130 | color: #5E5E5E; 131 | font-style: inherit; 132 | } 133 | 134 | code span.vs { 135 | color: #20794D; 136 | font-style: inherit; 137 | } 138 | 139 | code span.wa { 140 | color: #5E5E5E; 141 | font-style: italic; 142 | } 143 | 144 | code span.do { 145 | color: #5E5E5E; 146 | font-style: italic; 147 | } 148 | 149 | code span.im { 150 | color: #00769E; 151 | font-style: inherit; 152 | } 153 | 154 | code span.ch { 155 | color: #20794D; 156 | font-style: inherit; 157 | } 158 | 159 | code span.dt { 160 | color: #AD0000; 161 | font-style: inherit; 162 | } 163 | 164 | code span.fl { 165 | color: #AD0000; 166 | font-style: inherit; 167 | } 168 | 169 | code span.co { 170 | color: #5E5E5E; 171 | font-style: inherit; 172 | } 173 | 174 | code span.cv { 175 | color: #5E5E5E; 176 | font-style: italic; 177 | } 178 | 179 | code span.cn { 180 | color: #8f5902; 181 | font-style: inherit; 182 | } 183 | 184 | code span.sc { 185 | color: #5E5E5E; 186 | font-style: inherit; 187 | } 188 | 189 | code span.dv { 190 | color: #AD0000; 191 | font-style: inherit; 192 | } 193 | 194 | code span.kw { 195 | color: #003B4F; 196 | font-style: inherit; 197 | } 198 | 199 | .prevent-inlining { 200 | content: " */ 111 | section.title>h1 { 112 | font-family: "CMU Bright", "Segoe UI Semibold"; 113 | color: #ffffff; 114 | background-color: var(--main); 115 | border-radius: 25px; 116 | text-align: center; 117 | top: 25%; 118 | left: 0; 119 | right: 0; 120 | margin-left: auto; 121 | margin-right: auto; 122 | width: 80%; 123 | padding-bottom: 0.2em; 124 | height: auto; 125 | } 126 | 127 | /* remake this to be positioned with respect to h1 */ 128 | section.title>p { 129 | position: relative; 130 | text-align: center; 131 | top: 35px; 132 | } 133 | 134 | /* || SECTION CLASS: tinytext */ 135 | /* new class that makes p, ul, and blockquote text smaller */ 136 | /* might be useful for the References slide, use */ 137 | section.tinytext>p, 138 | section.tinytext>ul, 139 | section.tinytext>blockquote { 140 | font-size: 0.65em; 141 | } -------------------------------------------------------------------------------- /website/_site/site_libs/quarto-nav/headroom.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * headroom.js v0.12.0 - Give your page some headroom. Hide your header until you need it 3 | * Copyright (c) 2020 Nick Williams - http://wicky.nillia.ms/headroom.js 4 | * License: MIT 5 | */ 6 | 7 | !function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(t=t||self).Headroom=n()}(this,function(){"use strict";function t(){return"undefined"!=typeof window}function d(t){return function(t){return t&&t.document&&function(t){return 9===t.nodeType}(t.document)}(t)?function(t){var n=t.document,o=n.body,s=n.documentElement;return{scrollHeight:function(){return Math.max(o.scrollHeight,s.scrollHeight,o.offsetHeight,s.offsetHeight,o.clientHeight,s.clientHeight)},height:function(){return t.innerHeight||s.clientHeight||o.clientHeight},scrollY:function(){return void 0!==t.pageYOffset?t.pageYOffset:(s||o.parentNode||o).scrollTop}}}(t):function(t){return{scrollHeight:function(){return Math.max(t.scrollHeight,t.offsetHeight,t.clientHeight)},height:function(){return Math.max(t.offsetHeight,t.clientHeight)},scrollY:function(){return t.scrollTop}}}(t)}function n(t,s,e){var n,o=function(){var n=!1;try{var t={get passive(){n=!0}};window.addEventListener("test",t,t),window.removeEventListener("test",t,t)}catch(t){n=!1}return n}(),i=!1,r=d(t),l=r.scrollY(),a={};function c(){var t=Math.round(r.scrollY()),n=r.height(),o=r.scrollHeight();a.scrollY=t,a.lastScrollY=l,a.direction=ls.tolerance[a.direction],e(a),l=t,i=!1}function h(){i||(i=!0,n=requestAnimationFrame(c))}var u=!!o&&{passive:!0,capture:!1};return t.addEventListener("scroll",h,u),c(),{destroy:function(){cancelAnimationFrame(n),t.removeEventListener("scroll",h,u)}}}function o(t){return t===Object(t)?t:{down:t,up:t}}function s(t,n){n=n||{},Object.assign(this,s.options,n),this.classes=Object.assign({},s.options.classes,n.classes),this.elem=t,this.tolerance=o(this.tolerance),this.offset=o(this.offset),this.initialised=!1,this.frozen=!1}return s.prototype={constructor:s,init:function(){return s.cutsTheMustard&&!this.initialised&&(this.addClass("initial"),this.initialised=!0,setTimeout(function(t){t.scrollTracker=n(t.scroller,{offset:t.offset,tolerance:t.tolerance},t.update.bind(t))},100,this)),this},destroy:function(){this.initialised=!1,Object.keys(this.classes).forEach(this.removeClass,this),this.scrollTracker.destroy()},unpin:function(){!this.hasClass("pinned")&&this.hasClass("unpinned")||(this.addClass("unpinned"),this.removeClass("pinned"),this.onUnpin&&this.onUnpin.call(this))},pin:function(){this.hasClass("unpinned")&&(this.addClass("pinned"),this.removeClass("unpinned"),this.onPin&&this.onPin.call(this))},freeze:function(){this.frozen=!0,this.addClass("frozen")},unfreeze:function(){this.frozen=!1,this.removeClass("frozen")},top:function(){this.hasClass("top")||(this.addClass("top"),this.removeClass("notTop"),this.onTop&&this.onTop.call(this))},notTop:function(){this.hasClass("notTop")||(this.addClass("notTop"),this.removeClass("top"),this.onNotTop&&this.onNotTop.call(this))},bottom:function(){this.hasClass("bottom")||(this.addClass("bottom"),this.removeClass("notBottom"),this.onBottom&&this.onBottom.call(this))},notBottom:function(){this.hasClass("notBottom")||(this.addClass("notBottom"),this.removeClass("bottom"),this.onNotBottom&&this.onNotBottom.call(this))},shouldUnpin:function(t){return"down"===t.direction&&!t.top&&t.toleranceExceeded},shouldPin:function(t){return"up"===t.direction&&t.toleranceExceeded||t.top},addClass:function(t){this.elem.classList.add.apply(this.elem.classList,this.classes[t].split(" "))},removeClass:function(t){this.elem.classList.remove.apply(this.elem.classList,this.classes[t].split(" "))},hasClass:function(t){return this.classes[t].split(" ").every(function(t){return this.classList.contains(t)},this.elem)},update:function(t){t.isOutOfBounds||!0!==this.frozen&&(t.top?this.top():this.notTop(),t.bottom?this.bottom():this.notBottom(),this.shouldUnpin(t)?this.unpin():this.shouldPin(t)&&this.pin())}},s.options={tolerance:{up:0,down:0},offset:0,scroller:t()?window:null,classes:{frozen:"headroom--frozen",pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",bottom:"headroom--bottom",notBottom:"headroom--not-bottom",initial:"headroom"}},s.cutsTheMustard=!!(t()&&function(){}.bind&&"classList"in document.documentElement&&Object.assign&&Object.keys&&requestAnimationFrame),s}); 8 | -------------------------------------------------------------------------------- /website/_site/site_libs/quarto-html/anchor.min.js: -------------------------------------------------------------------------------- 1 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 2 | // 3 | // AnchorJS - v4.3.1 - 2021-04-17 4 | // https://www.bryanbraun.com/anchorjs/ 5 | // Copyright (c) 2021 Bryan Braun; Licensed MIT 6 | // 7 | // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat 8 | !function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function d(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function w(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],d(this.options),this.isTouchDevice=function(){return Boolean("ontouchstart"in window||window.TouchEvent||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var e,t,o,i,n,s,a,c,r,l,h,u,p=[];if(d(this.options),"touch"===(l=this.options.visible)&&(l=this.isTouchDevice()?"always":"hover"),0===(e=w(A=A||"h2, h3, h4, h5, h6")).length)return this;for(null===document.head.querySelector("style.anchorjs")&&((u=document.createElement("style")).className="anchorjs",u.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(u):document.head.insertBefore(u,A),u.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",u.sheet.cssRules.length),u.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",u.sheet.cssRules.length),u.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",u.sheet.cssRules.length),u.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',u.sheet.cssRules.length)),u=document.querySelectorAll("[id]"),t=[].map.call(u,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); 9 | // @license-end -------------------------------------------------------------------------------- /website/_site/site_libs/quarto-listing/quarto-listing.js: -------------------------------------------------------------------------------- 1 | const kProgressiveAttr = "data-src"; 2 | let categoriesLoaded = false; 3 | 4 | window.quartoListingCategory = (category) => { 5 | if (categoriesLoaded) { 6 | activateCategory(category); 7 | setCategoryHash(category); 8 | } 9 | }; 10 | 11 | window["quarto-listing-loaded"] = () => { 12 | // Process any existing hash 13 | const hash = getHash(); 14 | 15 | if (hash) { 16 | // If there is a category, switch to that 17 | if (hash.category) { 18 | activateCategory(hash.category); 19 | } 20 | // Paginate a specific listing 21 | const listingIds = Object.keys(window["quarto-listings"]); 22 | for (const listingId of listingIds) { 23 | const page = hash[getListingPageKey(listingId)]; 24 | if (page) { 25 | showPage(listingId, page); 26 | } 27 | } 28 | } 29 | 30 | const listingIds = Object.keys(window["quarto-listings"]); 31 | for (const listingId of listingIds) { 32 | // The actual list 33 | const list = window["quarto-listings"][listingId]; 34 | 35 | // Update the handlers for pagination events 36 | refreshPaginationHandlers(listingId); 37 | 38 | // Render any visible items that need it 39 | renderVisibleProgressiveImages(list); 40 | 41 | // Whenever the list is updated, we also need to 42 | // attach handlers to the new pagination elements 43 | // and refresh any newly visible items. 44 | list.on("updated", function () { 45 | renderVisibleProgressiveImages(list); 46 | setTimeout(() => refreshPaginationHandlers(listingId)); 47 | 48 | // Show or hide the no matching message 49 | toggleNoMatchingMessage(list); 50 | }); 51 | } 52 | }; 53 | 54 | window.document.addEventListener("DOMContentLoaded", function (_event) { 55 | // Attach click handlers to categories 56 | const categoryEls = window.document.querySelectorAll( 57 | ".quarto-listing-category .category" 58 | ); 59 | 60 | for (const categoryEl of categoryEls) { 61 | const category = categoryEl.getAttribute("data-category"); 62 | categoryEl.onclick = () => { 63 | activateCategory(category); 64 | setCategoryHash(category); 65 | }; 66 | } 67 | 68 | // Attach a click handler to the category title 69 | // (there should be only one, but since it is a class name, handle N) 70 | const categoryTitleEls = window.document.querySelectorAll( 71 | ".quarto-listing-category-title" 72 | ); 73 | for (const categoryTitleEl of categoryTitleEls) { 74 | categoryTitleEl.onclick = () => { 75 | activateCategory(""); 76 | setCategoryHash(""); 77 | }; 78 | } 79 | 80 | categoriesLoaded = true; 81 | }); 82 | 83 | function toggleNoMatchingMessage(list) { 84 | const selector = `#${list.listContainer.id} .listing-no-matching`; 85 | const noMatchingEl = window.document.querySelector(selector); 86 | if (noMatchingEl) { 87 | if (list.visibleItems.length === 0) { 88 | noMatchingEl.classList.remove("d-none"); 89 | } else { 90 | if (!noMatchingEl.classList.contains("d-none")) { 91 | noMatchingEl.classList.add("d-none"); 92 | } 93 | } 94 | } 95 | } 96 | 97 | function setCategoryHash(category) { 98 | setHash({ category }); 99 | } 100 | 101 | function setPageHash(listingId, page) { 102 | const currentHash = getHash() || {}; 103 | currentHash[getListingPageKey(listingId)] = page; 104 | setHash(currentHash); 105 | } 106 | 107 | function getListingPageKey(listingId) { 108 | return `${listingId}-page`; 109 | } 110 | 111 | function refreshPaginationHandlers(listingId) { 112 | const listingEl = window.document.getElementById(listingId); 113 | const paginationEls = listingEl.querySelectorAll( 114 | ".pagination li.page-item:not(.disabled) .page.page-link" 115 | ); 116 | for (const paginationEl of paginationEls) { 117 | paginationEl.onclick = (sender) => { 118 | setPageHash(listingId, sender.target.getAttribute("data-i")); 119 | showPage(listingId, sender.target.getAttribute("data-i")); 120 | return false; 121 | }; 122 | } 123 | } 124 | 125 | function renderVisibleProgressiveImages(list) { 126 | // Run through the visible items and render any progressive images 127 | for (const item of list.visibleItems) { 128 | const itemEl = item.elm; 129 | if (itemEl) { 130 | const progressiveImgs = itemEl.querySelectorAll( 131 | `img[${kProgressiveAttr}]` 132 | ); 133 | for (const progressiveImg of progressiveImgs) { 134 | const srcValue = progressiveImg.getAttribute(kProgressiveAttr); 135 | if (srcValue) { 136 | progressiveImg.setAttribute("src", srcValue); 137 | } 138 | progressiveImg.removeAttribute(kProgressiveAttr); 139 | } 140 | } 141 | } 142 | } 143 | 144 | function getHash() { 145 | // Hashes are of the form 146 | // #name:value|name1:value1|name2:value2 147 | const currentUrl = new URL(window.location); 148 | const hashRaw = currentUrl.hash ? currentUrl.hash.slice(1) : undefined; 149 | return parseHash(hashRaw); 150 | } 151 | 152 | const kAnd = "&"; 153 | const kEquals = "="; 154 | 155 | function parseHash(hash) { 156 | if (!hash) { 157 | return undefined; 158 | } 159 | const hasValuesStrs = hash.split(kAnd); 160 | const hashValues = hasValuesStrs 161 | .map((hashValueStr) => { 162 | const vals = hashValueStr.split(kEquals); 163 | if (vals.length === 2) { 164 | return { name: vals[0], value: vals[1] }; 165 | } else { 166 | return undefined; 167 | } 168 | }) 169 | .filter((value) => { 170 | return value !== undefined; 171 | }); 172 | 173 | const hashObj = {}; 174 | hashValues.forEach((hashValue) => { 175 | hashObj[hashValue.name] = decodeURIComponent(hashValue.value); 176 | }); 177 | return hashObj; 178 | } 179 | 180 | function makeHash(obj) { 181 | return Object.keys(obj) 182 | .map((key) => { 183 | return `${key}${kEquals}${obj[key]}`; 184 | }) 185 | .join(kAnd); 186 | } 187 | 188 | function setHash(obj) { 189 | const hash = makeHash(obj); 190 | window.history.pushState(null, null, `#${hash}`); 191 | } 192 | 193 | function showPage(listingId, page) { 194 | const list = window["quarto-listings"][listingId]; 195 | if (list) { 196 | list.show((page - 1) * list.page + 1, list.page); 197 | } 198 | } 199 | 200 | function activateCategory(category) { 201 | // Deactivate existing categories 202 | const activeEls = window.document.querySelectorAll( 203 | ".quarto-listing-category .category.active" 204 | ); 205 | for (const activeEl of activeEls) { 206 | activeEl.classList.remove("active"); 207 | } 208 | 209 | // Activate this category 210 | const categoryEl = window.document.querySelector( 211 | `.quarto-listing-category .category[data-category='${category}'` 212 | ); 213 | if (categoryEl) { 214 | categoryEl.classList.add("active"); 215 | } 216 | 217 | // Filter the listings to this category 218 | filterListingCategory(category); 219 | } 220 | 221 | function filterListingCategory(category) { 222 | const listingIds = Object.keys(window["quarto-listings"]); 223 | for (const listingId of listingIds) { 224 | const list = window["quarto-listings"][listingId]; 225 | if (list) { 226 | if (category === "") { 227 | // resets the filter 228 | list.filter(); 229 | } else { 230 | // filter to this category 231 | list.filter(function (item) { 232 | const itemValues = item.values(); 233 | if (itemValues.categories !== null) { 234 | const categories = itemValues.categories.split(","); 235 | return categories.includes(category); 236 | } else { 237 | return false; 238 | } 239 | }); 240 | } 241 | } 242 | } 243 | } 244 | -------------------------------------------------------------------------------- /website/_site/site_libs/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * clipboard.js v2.0.11 3 | * https://clipboardjs.com/ 4 | * 5 | * Licensed MIT © Zeno Rocha 6 | */ 7 | !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1 { 17 | btn.style.display = "none"; 18 | }; 19 | const showBackToTop = () => { 20 | btn.style.display = "inline-block"; 21 | }; 22 | if (btn) { 23 | window.document.addEventListener( 24 | "scroll", 25 | function () { 26 | const currentScrollTop = 27 | window.pageYOffset || document.documentElement.scrollTop; 28 | 29 | // Shows and hides the button 'intelligently' as the user scrolls 30 | if (currentScrollTop - scrollDownBuffer > lastScrollTop) { 31 | hideBackToTop(); 32 | lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop; 33 | } else if (currentScrollTop < lastScrollTop - scrollUpBuffer) { 34 | showBackToTop(); 35 | lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop; 36 | } 37 | 38 | // Show the button at the bottom, hides it at the top 39 | if (currentScrollTop <= 0) { 40 | hideBackToTop(); 41 | } else if ( 42 | window.innerHeight + currentScrollTop >= 43 | document.body.offsetHeight 44 | ) { 45 | showBackToTop(); 46 | } 47 | }, 48 | false 49 | ); 50 | } 51 | 52 | function throttle(func, wait) { 53 | var timeout; 54 | return function () { 55 | const context = this; 56 | const args = arguments; 57 | const later = function () { 58 | clearTimeout(timeout); 59 | timeout = null; 60 | func.apply(context, args); 61 | }; 62 | 63 | if (!timeout) { 64 | timeout = setTimeout(later, wait); 65 | } 66 | }; 67 | } 68 | 69 | function headerOffset() { 70 | // Set an offset if there is are fixed top navbar 71 | const headerEl = window.document.querySelector("header.fixed-top"); 72 | if (headerEl) { 73 | return headerEl.clientHeight; 74 | } else { 75 | return 0; 76 | } 77 | } 78 | 79 | function footerOffset() { 80 | const footerEl = window.document.querySelector("footer.footer"); 81 | if (footerEl) { 82 | return footerEl.clientHeight; 83 | } else { 84 | return 0; 85 | } 86 | } 87 | 88 | function updateDocumentOffsetWithoutAnimation() { 89 | updateDocumentOffset(false); 90 | } 91 | 92 | function updateDocumentOffset(animated) { 93 | // set body offset 94 | const topOffset = headerOffset(); 95 | const bodyOffset = topOffset + footerOffset(); 96 | const bodyEl = window.document.body; 97 | bodyEl.setAttribute("data-bs-offset", topOffset); 98 | bodyEl.style.paddingTop = topOffset + "px"; 99 | 100 | // deal with sidebar offsets 101 | const sidebars = window.document.querySelectorAll( 102 | ".sidebar, .headroom-target" 103 | ); 104 | sidebars.forEach((sidebar) => { 105 | if (!animated) { 106 | sidebar.classList.add("notransition"); 107 | // Remove the no transition class after the animation has time to complete 108 | setTimeout(function () { 109 | sidebar.classList.remove("notransition"); 110 | }, 201); 111 | } 112 | 113 | if (window.Headroom && sidebar.classList.contains("sidebar-unpinned")) { 114 | sidebar.style.top = "0"; 115 | sidebar.style.maxHeight = "100vh"; 116 | } else { 117 | sidebar.style.top = topOffset + "px"; 118 | sidebar.style.maxHeight = "calc(100vh - " + topOffset + "px)"; 119 | } 120 | }); 121 | 122 | // allow space for footer 123 | const mainContainer = window.document.querySelector(".quarto-container"); 124 | if (mainContainer) { 125 | mainContainer.style.minHeight = "calc(100vh - " + bodyOffset + "px)"; 126 | } 127 | 128 | // link offset 129 | let linkStyle = window.document.querySelector("#quarto-target-style"); 130 | if (!linkStyle) { 131 | linkStyle = window.document.createElement("style"); 132 | linkStyle.setAttribute("id", "quarto-target-style"); 133 | window.document.head.appendChild(linkStyle); 134 | } 135 | while (linkStyle.firstChild) { 136 | linkStyle.removeChild(linkStyle.firstChild); 137 | } 138 | if (topOffset > 0) { 139 | linkStyle.appendChild( 140 | window.document.createTextNode(` 141 | section:target::before { 142 | content: ""; 143 | display: block; 144 | height: ${topOffset}px; 145 | margin: -${topOffset}px 0 0; 146 | }`) 147 | ); 148 | } 149 | if (init) { 150 | window.dispatchEvent(headroomChanged); 151 | } 152 | init = true; 153 | } 154 | 155 | // initialize headroom 156 | var header = window.document.querySelector("#quarto-header"); 157 | if (header && window.Headroom) { 158 | const headroom = new window.Headroom(header, { 159 | tolerance: 5, 160 | onPin: function () { 161 | const sidebars = window.document.querySelectorAll( 162 | ".sidebar, .headroom-target" 163 | ); 164 | sidebars.forEach((sidebar) => { 165 | sidebar.classList.remove("sidebar-unpinned"); 166 | }); 167 | updateDocumentOffset(); 168 | }, 169 | onUnpin: function () { 170 | const sidebars = window.document.querySelectorAll( 171 | ".sidebar, .headroom-target" 172 | ); 173 | sidebars.forEach((sidebar) => { 174 | sidebar.classList.add("sidebar-unpinned"); 175 | }); 176 | updateDocumentOffset(); 177 | }, 178 | }); 179 | headroom.init(); 180 | 181 | let frozen = false; 182 | window.quartoToggleHeadroom = function () { 183 | if (frozen) { 184 | headroom.unfreeze(); 185 | frozen = false; 186 | } else { 187 | headroom.freeze(); 188 | frozen = true; 189 | } 190 | }; 191 | } 192 | 193 | window.addEventListener( 194 | "hashchange", 195 | function (e) { 196 | if ( 197 | getComputedStyle(document.documentElement).scrollBehavior !== "smooth" 198 | ) { 199 | window.scrollTo(0, window.pageYOffset - headerOffset()); 200 | } 201 | }, 202 | false 203 | ); 204 | 205 | // Observe size changed for the header 206 | const headerEl = window.document.querySelector("header.fixed-top"); 207 | if (headerEl && window.ResizeObserver) { 208 | const observer = new window.ResizeObserver( 209 | updateDocumentOffsetWithoutAnimation 210 | ); 211 | observer.observe(headerEl, { 212 | attributes: true, 213 | childList: true, 214 | characterData: true, 215 | }); 216 | } else { 217 | window.addEventListener( 218 | "resize", 219 | throttle(updateDocumentOffsetWithoutAnimation, 50) 220 | ); 221 | } 222 | setTimeout(updateDocumentOffsetWithoutAnimation, 250); 223 | 224 | // fixup index.html links if we aren't on the filesystem 225 | if (window.location.protocol !== "file:") { 226 | const links = window.document.querySelectorAll("a"); 227 | for (let i = 0; i < links.length; i++) { 228 | if (links[i].href) { 229 | links[i].href = links[i].href.replace(/\/index\.html/, "/"); 230 | } 231 | } 232 | 233 | // Fixup any sharing links that require urls 234 | // Append url to any sharing urls 235 | const sharingLinks = window.document.querySelectorAll( 236 | "a.sidebar-tools-main-item" 237 | ); 238 | for (let i = 0; i < sharingLinks.length; i++) { 239 | const sharingLink = sharingLinks[i]; 240 | const href = sharingLink.getAttribute("href"); 241 | if (href) { 242 | sharingLink.setAttribute( 243 | "href", 244 | href.replace("|url|", window.location.href) 245 | ); 246 | } 247 | } 248 | 249 | // Scroll the active navigation item into view, if necessary 250 | const navSidebar = window.document.querySelector("nav#quarto-sidebar"); 251 | if (navSidebar) { 252 | // Find the active item 253 | const activeItem = navSidebar.querySelector("li.sidebar-item a.active"); 254 | if (activeItem) { 255 | // Wait for the scroll height and height to resolve by observing size changes on the 256 | // nav element that is scrollable 257 | const resizeObserver = new ResizeObserver((_entries) => { 258 | // The bottom of the element 259 | const elBottom = activeItem.offsetTop; 260 | const viewBottom = navSidebar.scrollTop + navSidebar.clientHeight; 261 | 262 | // The element height and scroll height are the same, then we are still loading 263 | if (viewBottom !== navSidebar.scrollHeight) { 264 | // Determine if the item isn't visible and scroll to it 265 | if (elBottom >= viewBottom) { 266 | navSidebar.scrollTop = elBottom; 267 | } 268 | 269 | // stop observing now since we've completed the scroll 270 | resizeObserver.unobserve(navSidebar); 271 | } 272 | }); 273 | resizeObserver.observe(navSidebar); 274 | } 275 | } 276 | } 277 | }); 278 | -------------------------------------------------------------------------------- /website/_site/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Marp Community Themes - Page Not Found 11 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 |
59 |
60 | 91 |
92 | 93 |
94 | 95 | 96 | 97 | 98 |
99 | 100 |
101 |
102 |

Page Not Found

103 |
104 | 105 | 106 | 107 |
108 | 109 | 110 | 111 | 112 |
113 | 114 | 115 |
116 | 117 |

We’re sorry, the page you’re looking for can’t be found. Please, click here to return to our homepage.

118 | 119 | 120 | 121 |
122 | 355 |
356 |
357 | 375 |
376 | 377 | 378 | 379 | -------------------------------------------------------------------------------- /website/_site/theme/border.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Marp Community Themes - Border 13 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 |
60 |
61 | 92 |
93 | 94 |
95 |
96 |
97 |

Border

98 |
99 |
Light
100 |
101 |
102 |
103 |
104 |
105 |
Author
106 |
107 |

rnd195

108 |
109 |
110 |
111 |
Published
112 |
113 |

March 26, 2022

114 |
115 |
116 |
117 |
118 | 119 | 120 | 121 | 122 |
123 |
124 |
125 | 139 |
140 |

This theme is based on the default Marp theme but has some notable changes. Each slide has a dark-gray border and also a white-to-gray linear gradient as its background. As the main font, the Inter font family is used. For more changes, see the screenshots below.

141 |
142 |

Screenshots

143 |

144 |

145 |

146 |

147 |

148 |

149 |

150 |

151 |

152 |
153 |
154 |

Custom classes and keywords

155 |

<!-- _class: tinytext -->

156 |
    157 |
  • Makes most text on the slide much smaller.
  • 158 |
  • Might be useful for references.
  • 159 |
160 |

![center](image.jpg)

161 |
    162 |
  • By default, images are left-aligned.
  • 163 |
  • The center keywords centers the image.
  • 164 |
165 |
166 |
167 |

License

168 |

This theme is licensed under the MIT License.

169 | 170 | 171 |
172 |
173 |
174 | 176 |
177 |
178 | 179 | 405 |
406 |
407 | 425 |
426 | 427 | 428 | 429 | -------------------------------------------------------------------------------- /website/_site/site_libs/quarto-listing/list.min.js: -------------------------------------------------------------------------------- 1 | var List;List=function(){var t={"./src/add-async.js":function(t){t.exports=function(t){return function e(r,n,s){var i=r.splice(0,50);s=(s=s||[]).concat(t.add(i)),r.length>0?setTimeout((function(){e(r,n,s)}),1):(t.update(),n(s))}}},"./src/filter.js":function(t){t.exports=function(t){return t.handlers.filterStart=t.handlers.filterStart||[],t.handlers.filterComplete=t.handlers.filterComplete||[],function(e){if(t.trigger("filterStart"),t.i=1,t.reset.filter(),void 0===e)t.filtered=!1;else{t.filtered=!0;for(var r=t.items,n=0,s=r.length;nv.page,a=new g(t[s],void 0,n),v.items.push(a),r.push(a)}return v.update(),r}m(t.slice(0),e)}},this.show=function(t,e){return this.i=t,this.page=e,v.update(),v},this.remove=function(t,e,r){for(var n=0,s=0,i=v.items.length;s-1&&r.splice(n,1),v},this.trigger=function(t){for(var e=v.handlers[t].length;e--;)v.handlers[t][e](v);return v},this.reset={filter:function(){for(var t=v.items,e=t.length;e--;)t[e].filtered=!1;return v},search:function(){for(var t=v.items,e=t.length;e--;)t[e].found=!1;return v}},this.update=function(){var t=v.items,e=t.length;v.visibleItems=[],v.matchingItems=[],v.templater.clear();for(var r=0;r=v.i&&v.visibleItems.lengthe},innerWindow:function(t,e,r){return t>=e-r&&t<=e+r},dotted:function(t,e,r,n,s,i,a){return this.dottedLeft(t,e,r,n,s,i)||this.dottedRight(t,e,r,n,s,i,a)},dottedLeft:function(t,e,r,n,s,i){return e==r+1&&!this.innerWindow(e,s,i)&&!this.right(e,n)},dottedRight:function(t,e,r,n,s,i,a){return!t.items[a-1].values().dotted&&(e==n&&!this.innerWindow(e,s,i)&&!this.right(e,n))}};return function(e){var n=new i(t.listContainer.id,{listClass:e.paginationClass||"pagination",item:e.item||"
  • ",valueNames:["page","dotted"],searchClass:"pagination-search-that-is-not-supposed-to-exist",sortClass:"pagination-sort-that-is-not-supposed-to-exist"});s.bind(n.listContainer,"click",(function(e){var r=e.target||e.srcElement,n=t.utils.getAttribute(r,"data-page"),s=t.utils.getAttribute(r,"data-i");s&&t.show((s-1)*n+1,n)})),t.on("updated",(function(){r(n,e)})),r(n,e)}}},"./src/parse.js":function(t,e,r){t.exports=function(t){var e=r("./src/item.js")(t),n=function(r,n){for(var s=0,i=r.length;s0?setTimeout((function(){e(r,s)}),1):(t.update(),t.trigger("parseComplete"))};return t.handlers.parseComplete=t.handlers.parseComplete||[],function(){var e=function(t){for(var e=t.childNodes,r=[],n=0,s=e.length;n]/g.exec(t)){var e=document.createElement("tbody");return e.innerHTML=t,e.firstElementChild}if(-1!==t.indexOf("<")){var r=document.createElement("div");return r.innerHTML=t,r.firstElementChild}}},a=function(e,r,n){var s=void 0,i=function(e){for(var r=0,n=t.valueNames.length;r=1;)t.list.removeChild(t.list.firstChild)},function(){var r;if("function"!=typeof t.item){if(!(r="string"==typeof t.item?-1===t.item.indexOf("<")?document.getElementById(t.item):i(t.item):s()))throw new Error("The list needs to have at least one item on init otherwise you'll have to add a template.");r=n(r,t.valueNames),e=function(){return r.cloneNode(!0)}}else e=function(e){var r=t.item(e);return i(r)}}()};t.exports=function(t){return new e(t)}},"./src/utils/classes.js":function(t,e,r){var n=r("./src/utils/index-of.js"),s=/\s+/;Object.prototype.toString;function i(t){if(!t||!t.nodeType)throw new Error("A DOM element reference is required");this.el=t,this.list=t.classList}t.exports=function(t){return new i(t)},i.prototype.add=function(t){if(this.list)return this.list.add(t),this;var e=this.array();return~n(e,t)||e.push(t),this.el.className=e.join(" "),this},i.prototype.remove=function(t){if(this.list)return this.list.remove(t),this;var e=this.array(),r=n(e,t);return~r&&e.splice(r,1),this.el.className=e.join(" "),this},i.prototype.toggle=function(t,e){return this.list?(void 0!==e?e!==this.list.toggle(t,e)&&this.list.toggle(t):this.list.toggle(t),this):(void 0!==e?e?this.add(t):this.remove(t):this.has(t)?this.remove(t):this.add(t),this)},i.prototype.array=function(){var t=(this.el.getAttribute("class")||"").replace(/^\s+|\s+$/g,"").split(s);return""===t[0]&&t.shift(),t},i.prototype.has=i.prototype.contains=function(t){return this.list?this.list.contains(t):!!~n(this.array(),t)}},"./src/utils/events.js":function(t,e,r){var n=window.addEventListener?"addEventListener":"attachEvent",s=window.removeEventListener?"removeEventListener":"detachEvent",i="addEventListener"!==n?"on":"",a=r("./src/utils/to-array.js");e.bind=function(t,e,r,s){for(var o=0,l=(t=a(t)).length;o32)return!1;var a=n,o=function(){var t,r={};for(t=0;t=p;b--){var j=o[t.charAt(b-1)];if(C[b]=0===m?(C[b+1]<<1|1)&j:(C[b+1]<<1|1)&j|(v[b+1]|v[b])<<1|1|v[b+1],C[b]&d){var x=l(m,b-1);if(x<=u){if(u=x,!((c=b-1)>a))break;p=Math.max(1,2*a-c)}}}if(l(m+1,a)>u)break;v=C}return!(c<0)}},"./src/utils/get-attribute.js":function(t){t.exports=function(t,e){var r=t.getAttribute&&t.getAttribute(e)||null;if(!r)for(var n=t.attributes,s=n.length,i=0;i=48&&t<=57}function i(t,e){for(var i=(t+="").length,a=(e+="").length,o=0,l=0;o=i&&l=a?-1:l>=a&&o=i?1:i-a}i.caseInsensitive=i.i=function(t,e){return i((""+t).toLowerCase(),(""+e).toLowerCase())},Object.defineProperties(i,{alphabet:{get:function(){return e},set:function(t){r=[];var s=0;if(e=t)for(;s 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Marp Community Themes - Gradient 13 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 |
    60 |
    61 | 92 |
    93 | 94 |
    95 |
    96 |
    97 |

    Gradient

    98 |
    99 |
    Light
    100 |
    101 |
    102 |
    103 |
    104 |
    105 |
    Author
    106 |
    107 |

    rnd195

    108 |
    109 |
    110 |
    111 |
    Published
    112 |
    113 |

    March 26, 2022

    114 |
    115 |
    116 |
    117 |
    118 | 119 | 120 | 121 | 122 |
    123 |
    124 |
    125 | 139 |
    140 |

    This theme is based on the default Marp theme. The background on each slide is a colorful gradient. As the main font, the Inter font family is used. For more, see the screenshots below.

    141 |
    142 |

    Screenshots

    143 |
    144 |

    class: blue

    145 |

    146 |
    147 |
    148 |

    class: default

    149 |

    150 |

    151 |

    152 |

    153 |

    154 |

    155 |

    156 |

    157 |

    158 |
    159 |
    160 |
    161 |

    Custom classes and keywords

    162 |

    <!-- _class: tinytext -->

    163 |
      164 |
    • Makes most text on the slide much smaller.
    • 165 |
    • Might be useful for references.
    • 166 |
    167 |

    ![center](image.jpg)

    168 |
      169 |
    • By default, images are left-aligned.
    • 170 |
    • The center keywords centers the image.
    • 171 |
    172 |

    <!-- _class: blue -->

    173 |
      174 |
    • Blue variant of the gradient theme.
    • 175 |
    176 |
    177 |
    178 |

    License

    179 |

    This theme is licensed under the MIT License.

    180 | 181 | 182 |
    183 |
    184 |
    185 | 187 |
    188 |
    189 | 190 | 416 |
    417 |
    418 | 436 |
    437 | 438 | 439 | 440 | -------------------------------------------------------------------------------- /website/_site/site_libs/quarto-html/popper.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @popperjs/core v2.11.4 - MIT License 3 | */ 4 | 5 | !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).Popper={})}(this,(function(e){"use strict";function t(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function n(e){return e instanceof t(e).Element||e instanceof Element}function r(e){return e instanceof t(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof t(e).ShadowRoot||e instanceof ShadowRoot)}var i=Math.max,a=Math.min,s=Math.round;function f(e,t){void 0===t&&(t=!1);var n=e.getBoundingClientRect(),o=1,i=1;if(r(e)&&t){var a=e.offsetHeight,f=e.offsetWidth;f>0&&(o=s(n.width)/f||1),a>0&&(i=s(n.height)/a||1)}return{width:n.width/o,height:n.height/i,top:n.top/i,right:n.right/o,bottom:n.bottom/i,left:n.left/o,x:n.left/o,y:n.top/i}}function c(e){var n=t(e);return{scrollLeft:n.pageXOffset,scrollTop:n.pageYOffset}}function p(e){return e?(e.nodeName||"").toLowerCase():null}function u(e){return((n(e)?e.ownerDocument:e.document)||window.document).documentElement}function l(e){return f(u(e)).left+c(e).scrollLeft}function d(e){return t(e).getComputedStyle(e)}function h(e){var t=d(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function m(e,n,o){void 0===o&&(o=!1);var i,a,d=r(n),m=r(n)&&function(e){var t=e.getBoundingClientRect(),n=s(t.width)/e.offsetWidth||1,r=s(t.height)/e.offsetHeight||1;return 1!==n||1!==r}(n),v=u(n),g=f(e,m),y={scrollLeft:0,scrollTop:0},b={x:0,y:0};return(d||!d&&!o)&&(("body"!==p(n)||h(v))&&(y=(i=n)!==t(i)&&r(i)?{scrollLeft:(a=i).scrollLeft,scrollTop:a.scrollTop}:c(i)),r(n)?((b=f(n,!0)).x+=n.clientLeft,b.y+=n.clientTop):v&&(b.x=l(v))),{x:g.left+y.scrollLeft-b.x,y:g.top+y.scrollTop-b.y,width:g.width,height:g.height}}function v(e){var t=f(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function g(e){return"html"===p(e)?e:e.assignedSlot||e.parentNode||(o(e)?e.host:null)||u(e)}function y(e){return["html","body","#document"].indexOf(p(e))>=0?e.ownerDocument.body:r(e)&&h(e)?e:y(g(e))}function b(e,n){var r;void 0===n&&(n=[]);var o=y(e),i=o===(null==(r=e.ownerDocument)?void 0:r.body),a=t(o),s=i?[a].concat(a.visualViewport||[],h(o)?o:[]):o,f=n.concat(s);return i?f:f.concat(b(g(s)))}function x(e){return["table","td","th"].indexOf(p(e))>=0}function w(e){return r(e)&&"fixed"!==d(e).position?e.offsetParent:null}function O(e){for(var n=t(e),i=w(e);i&&x(i)&&"static"===d(i).position;)i=w(i);return i&&("html"===p(i)||"body"===p(i)&&"static"===d(i).position)?n:i||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&r(e)&&"fixed"===d(e).position)return null;var n=g(e);for(o(n)&&(n=n.host);r(n)&&["html","body"].indexOf(p(n))<0;){var i=d(n);if("none"!==i.transform||"none"!==i.perspective||"paint"===i.contain||-1!==["transform","perspective"].indexOf(i.willChange)||t&&"filter"===i.willChange||t&&i.filter&&"none"!==i.filter)return n;n=n.parentNode}return null}(e)||n}var j="top",E="bottom",D="right",A="left",L="auto",P=[j,E,D,A],M="start",k="end",W="viewport",B="popper",H=P.reduce((function(e,t){return e.concat([t+"-"+M,t+"-"+k])}),[]),T=[].concat(P,[L]).reduce((function(e,t){return e.concat([t,t+"-"+M,t+"-"+k])}),[]),R=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function S(e){var t=new Map,n=new Set,r=[];function o(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var r=t.get(e);r&&o(r)}})),r.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||o(e)})),r}function C(e){return e.split("-")[0]}function q(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&o(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function V(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function N(e,r){return r===W?V(function(e){var n=t(e),r=u(e),o=n.visualViewport,i=r.clientWidth,a=r.clientHeight,s=0,f=0;return o&&(i=o.width,a=o.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(s=o.offsetLeft,f=o.offsetTop)),{width:i,height:a,x:s+l(e),y:f}}(e)):n(r)?function(e){var t=f(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(r):V(function(e){var t,n=u(e),r=c(e),o=null==(t=e.ownerDocument)?void 0:t.body,a=i(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=i(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),f=-r.scrollLeft+l(e),p=-r.scrollTop;return"rtl"===d(o||n).direction&&(f+=i(n.clientWidth,o?o.clientWidth:0)-a),{width:a,height:s,x:f,y:p}}(u(e)))}function I(e,t,o){var s="clippingParents"===t?function(e){var t=b(g(e)),o=["absolute","fixed"].indexOf(d(e).position)>=0&&r(e)?O(e):e;return n(o)?t.filter((function(e){return n(e)&&q(e,o)&&"body"!==p(e)})):[]}(e):[].concat(t),f=[].concat(s,[o]),c=f[0],u=f.reduce((function(t,n){var r=N(e,n);return t.top=i(r.top,t.top),t.right=a(r.right,t.right),t.bottom=a(r.bottom,t.bottom),t.left=i(r.left,t.left),t}),N(e,c));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function _(e){return e.split("-")[1]}function F(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function U(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?C(o):null,a=o?_(o):null,s=n.x+n.width/2-r.width/2,f=n.y+n.height/2-r.height/2;switch(i){case j:t={x:s,y:n.y-r.height};break;case E:t={x:s,y:n.y+n.height};break;case D:t={x:n.x+n.width,y:f};break;case A:t={x:n.x-r.width,y:f};break;default:t={x:n.x,y:n.y}}var c=i?F(i):null;if(null!=c){var p="y"===c?"height":"width";switch(a){case M:t[c]=t[c]-(n[p]/2-r[p]/2);break;case k:t[c]=t[c]+(n[p]/2-r[p]/2)}}return t}function z(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function X(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function Y(e,t){void 0===t&&(t={});var r=t,o=r.placement,i=void 0===o?e.placement:o,a=r.boundary,s=void 0===a?"clippingParents":a,c=r.rootBoundary,p=void 0===c?W:c,l=r.elementContext,d=void 0===l?B:l,h=r.altBoundary,m=void 0!==h&&h,v=r.padding,g=void 0===v?0:v,y=z("number"!=typeof g?g:X(g,P)),b=d===B?"reference":B,x=e.rects.popper,w=e.elements[m?b:d],O=I(n(w)?w:w.contextElement||u(e.elements.popper),s,p),A=f(e.elements.reference),L=U({reference:A,element:x,strategy:"absolute",placement:i}),M=V(Object.assign({},x,L)),k=d===B?M:A,H={top:O.top-k.top+y.top,bottom:k.bottom-O.bottom+y.bottom,left:O.left-k.left+y.left,right:k.right-O.right+y.right},T=e.modifiersData.offset;if(d===B&&T){var R=T[i];Object.keys(H).forEach((function(e){var t=[D,E].indexOf(e)>=0?1:-1,n=[j,E].indexOf(e)>=0?"y":"x";H[e]+=R[n]*t}))}return H}var G={placement:"bottom",modifiers:[],strategy:"absolute"};function J(){for(var e=arguments.length,t=new Array(e),n=0;n=0?-1:1,i="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=i[0],s=i[1];return a=a||0,s=(s||0)*o,[A,D].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}(n,t.rects,i),e}),{}),s=a[t.placement],f=s.x,c=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=f,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=a}},ie={left:"right",right:"left",bottom:"top",top:"bottom"};function ae(e){return e.replace(/left|right|bottom|top/g,(function(e){return ie[e]}))}var se={start:"end",end:"start"};function fe(e){return e.replace(/start|end/g,(function(e){return se[e]}))}function ce(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,s=n.flipVariations,f=n.allowedAutoPlacements,c=void 0===f?T:f,p=_(r),u=p?s?H:H.filter((function(e){return _(e)===p})):P,l=u.filter((function(e){return c.indexOf(e)>=0}));0===l.length&&(l=u);var d=l.reduce((function(t,n){return t[n]=Y(e,{placement:n,boundary:o,rootBoundary:i,padding:a})[C(n)],t}),{});return Object.keys(d).sort((function(e,t){return d[e]-d[t]}))}var pe={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=void 0===o||o,a=n.altAxis,s=void 0===a||a,f=n.fallbackPlacements,c=n.padding,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.flipVariations,h=void 0===d||d,m=n.allowedAutoPlacements,v=t.options.placement,g=C(v),y=f||(g===v||!h?[ae(v)]:function(e){if(C(e)===L)return[];var t=ae(e);return[fe(e),t,fe(t)]}(v)),b=[v].concat(y).reduce((function(e,n){return e.concat(C(n)===L?ce(t,{placement:n,boundary:p,rootBoundary:u,padding:c,flipVariations:h,allowedAutoPlacements:m}):n)}),[]),x=t.rects.reference,w=t.rects.popper,O=new Map,P=!0,k=b[0],W=0;W=0,S=R?"width":"height",q=Y(t,{placement:B,boundary:p,rootBoundary:u,altBoundary:l,padding:c}),V=R?T?D:A:T?E:j;x[S]>w[S]&&(V=ae(V));var N=ae(V),I=[];if(i&&I.push(q[H]<=0),s&&I.push(q[V]<=0,q[N]<=0),I.every((function(e){return e}))){k=B,P=!1;break}O.set(B,I)}if(P)for(var F=function(e){var t=b.find((function(t){var n=O.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return k=t,"break"},U=h?3:1;U>0;U--){if("break"===F(U))break}t.placement!==k&&(t.modifiersData[r]._skip=!0,t.placement=k,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function ue(e,t,n){return i(e,a(t,n))}var le={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,s=void 0===o||o,f=n.altAxis,c=void 0!==f&&f,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.padding,h=n.tether,m=void 0===h||h,g=n.tetherOffset,y=void 0===g?0:g,b=Y(t,{boundary:p,rootBoundary:u,padding:d,altBoundary:l}),x=C(t.placement),w=_(t.placement),L=!w,P=F(x),k="x"===P?"y":"x",W=t.modifiersData.popperOffsets,B=t.rects.reference,H=t.rects.popper,T="function"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,R="number"==typeof T?{mainAxis:T,altAxis:T}:Object.assign({mainAxis:0,altAxis:0},T),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,q={x:0,y:0};if(W){if(s){var V,N="y"===P?j:A,I="y"===P?E:D,U="y"===P?"height":"width",z=W[P],X=z+b[N],G=z-b[I],J=m?-H[U]/2:0,K=w===M?B[U]:H[U],Q=w===M?-H[U]:-B[U],Z=t.elements.arrow,$=m&&Z?v(Z):{width:0,height:0},ee=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},te=ee[N],ne=ee[I],re=ue(0,B[U],$[U]),oe=L?B[U]/2-J-re-te-R.mainAxis:K-re-te-R.mainAxis,ie=L?-B[U]/2+J+re+ne+R.mainAxis:Q+re+ne+R.mainAxis,ae=t.elements.arrow&&O(t.elements.arrow),se=ae?"y"===P?ae.clientTop||0:ae.clientLeft||0:0,fe=null!=(V=null==S?void 0:S[P])?V:0,ce=z+ie-fe,pe=ue(m?a(X,z+oe-fe-se):X,z,m?i(G,ce):G);W[P]=pe,q[P]=pe-z}if(c){var le,de="x"===P?j:A,he="x"===P?E:D,me=W[k],ve="y"===k?"height":"width",ge=me+b[de],ye=me-b[he],be=-1!==[j,A].indexOf(x),xe=null!=(le=null==S?void 0:S[k])?le:0,we=be?ge:me-B[ve]-H[ve]-xe+R.altAxis,Oe=be?me+B[ve]+H[ve]-xe-R.altAxis:ye,je=m&&be?function(e,t,n){var r=ue(e,t,n);return r>n?n:r}(we,me,Oe):ue(m?we:ge,me,m?Oe:ye);W[k]=je,q[k]=je-me}t.modifiersData[r]=q}},requiresIfExists:["offset"]};var de={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,s=C(n.placement),f=F(s),c=[A,D].indexOf(s)>=0?"height":"width";if(i&&a){var p=function(e,t){return z("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:X(e,P))}(o.padding,n),u=v(i),l="y"===f?j:A,d="y"===f?E:D,h=n.rects.reference[c]+n.rects.reference[f]-a[f]-n.rects.popper[c],m=a[f]-n.rects.reference[f],g=O(i),y=g?"y"===f?g.clientHeight||0:g.clientWidth||0:0,b=h/2-m/2,x=p[l],w=y-u[c]-p[d],L=y/2-u[c]/2+b,M=ue(x,L,w),k=f;n.modifiersData[r]=((t={})[k]=M,t.centerOffset=M-L,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&q(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function he(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function me(e){return[j,D,E,A].some((function(t){return e[t]>=0}))}var ve={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=Y(t,{elementContext:"reference"}),s=Y(t,{altBoundary:!0}),f=he(a,r),c=he(s,o,i),p=me(f),u=me(c);t.modifiersData[n]={referenceClippingOffsets:f,popperEscapeOffsets:c,isReferenceHidden:p,hasPopperEscaped:u},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":u})}},ge=K({defaultModifiers:[Z,$,ne,re]}),ye=[Z,$,ne,re,oe,pe,le,de,ve],be=K({defaultModifiers:ye});e.applyStyles=re,e.arrow=de,e.computeStyles=ne,e.createPopper=be,e.createPopperLite=ge,e.defaultModifiers=ye,e.detectOverflow=Y,e.eventListeners=Z,e.flip=pe,e.hide=ve,e.offset=oe,e.popperGenerator=K,e.popperOffsets=$,e.preventOverflow=le,Object.defineProperty(e,"__esModule",{value:!0})})); 6 | 7 | -------------------------------------------------------------------------------- /themes/licenses/LICENSE_GPLv2: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /website/_site/theme/beam.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Marp Community Themes - Beam 13 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 |
    60 |
    61 | 92 |
    93 | 94 |
    95 |
    96 |
    97 |

    Beam

    98 |
    99 |
    Light
    100 |
    101 |
    102 |
    103 |
    104 |
    105 |
    Author
    106 |
    107 |

    rnd195

    108 |
    109 |
    110 |
    111 |
    Published
    112 |
    113 |

    March 26, 2022

    114 |
    115 |
    116 |
    117 |
    118 | 119 | 120 | 121 | 122 |
    123 |
    124 |
    125 | 139 |
    140 |

    The beam theme tries to mimic the look of LaTeX’s beamer class. As such, it is intended to be used with the Computer Modern Unicode font family. It also provides support for a title page. To change the default colors from blue to anything else, please, follow the guide in the Github repository of the theme.

    141 |
    142 |

    Screenshots

    143 |

    144 |
      145 |
    • <!-- _class: title --> needs to be specified for the first slide to look like this. Here is an example of what it could look like
    • 146 |
    147 |
    ---
    148 | marp: true
    149 | theme: beam
    150 | ---
    151 | <!-- _class: title -->
    152 | # Title of the presentation
    153 | Author's name
    154 | University of XYZ
    155 | 2022-06-19
    156 |

    157 |

    158 |

    159 |

    160 |

    161 |

    162 |

    163 |

    164 |
    165 |
    166 |

    Custom classes and keywords

    167 |

    <!-- _class: title -->

    168 |
      169 |
    • Changes the layout of the slide to a title page.
    • 170 |
    • The first Heading 1 will be styled as the title.
    • 171 |
    • Make sure to include the underscore “_” so that your whole presentation is not made up of title pages.
    • 172 |
    • The title should be no more than 2 lines long, otherwise, it spills over other text.
    • 173 |
    174 |

    <!-- _class: tinytext -->

    175 |
      176 |
    • Makes most text on the slide much smaller.
    • 177 |
    • Might be useful for references.
    • 178 |
    179 |

    ![center](image.jpg)

    180 |
      181 |
    • By default, images are left-aligned.
    • 182 |
    • The center keywords centers the image.
    • 183 |
    184 |
    185 |
    186 |

    License

    187 |

    The beamer-inspired beam theme is licensed under GNU GPLv3.

    188 | 189 | 190 |
    191 |
    192 |
    193 | 195 |
    196 |
    197 | 198 | 424 |
    425 | 445 | 446 | 447 | 448 | --------------------------------------------------------------------------------