An open API service indexing awesome lists of open source software.

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.

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:

![](example.png)

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).