https://github.com/quarto-ext/attribution
Display attribution text sideways along the right edge of Revealjs slides.
https://github.com/quarto-ext/attribution
Last synced: about 1 year ago
JSON representation
Display attribution text sideways along the right edge of Revealjs slides.
- Host: GitHub
- URL: https://github.com/quarto-ext/attribution
- Owner: quarto-ext
- License: mit
- Created: 2022-10-07T14:05:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T23:30:36.000Z (over 2 years ago)
- Last Synced: 2025-05-12T20:24:54.749Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 9.94 MB
- Stars: 18
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# attribution
A Revealjs plugin extension for displaying attribution text sideways along the right edge of the viewport. Based on the attribution plugin by [@rschmehl](https://github.com/rschmehl/reveal-plugins).
:warning: Requires Quarto Version 1.2.124 or later :warning:
## Installation
```
quarto add quarto-ext/attribution
```
This will install the extension under the `_extensions` subdirectory. If you're using version control, you will want to check in this directory.
## Usage:
Simply add the extension to the list of reveal plugins, for example:
```
title: My Presentation
format:
revealjs: default
revealjs-plugins:
- attribution
```
Then, add an attribution by including it in div with the `.attribution` class:
```{.markdown}
::: {.attribution}
Photo courtesy of [@ingtotheforest](https://unsplash.com/@ingtotheforest)
:::
```
You can see the attribution rendered on the far right of the slide here:

View the above example presentation at .
Full source code for the example is available at [example.qmd](https://github.com/quarto-ext/attribution/blob/main/example.qmd).