https://github.com/emilhvitfeldt/quarto-revealjs-loud
Automatic big text in quarto revealjs slides
https://github.com/emilhvitfeldt/quarto-revealjs-loud
quarto quarto-pub quartopub revealjs revealjs-plugin
Last synced: 4 months ago
JSON representation
Automatic big text in quarto revealjs slides
- Host: GitHub
- URL: https://github.com/emilhvitfeldt/quarto-revealjs-loud
- Owner: EmilHvitfeldt
- Created: 2024-08-04T20:38:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-04T20:40:24.000Z (about 1 year ago)
- Last Synced: 2025-03-31T15:25:42.512Z (7 months ago)
- Topics: quarto, quarto-pub, quartopub, revealjs, revealjs-plugin
- Language: JavaScript
- Homepage: https://emilhvitfeldt.github.io/quarto-revealjs-loud/
- Size: 2.02 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# loud revealjs plugin For Quarto
This plugin centers all slides and makes the text as big as it can. This is done by adding the [center](https://quarto.org/docs/presentations/revealjs/advanced.html#center) class to all slides, and the [r-fit-text](https://quarto.org/docs/presentations/revealjs/advanced.html#fit-text) class to all elements of the slides.
## Installing
To install, run the following line in your terminal
```bash
quarto add emilhvitfeldt/quarto-revealjs-loud
```This will install the extension under the `_extensions` subdirectory.
If you're using version control, you will want to check in this directory.## Using
Once an extension has been added, you can use the Reveal plugin by adding it to the reveal-plugins key. For example:
```yaml
---
title: "My Presentation"
format: revealjs
revealjs-plugins:
- loud
---
```## Example
Here is the source code for a minimal example: [example.qmd](example.qmd).