b

babble-bubbles

@preview

A package to create callouts.

v0.1.0
MIT

Package Information

Last Updated

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/babble-bubbles:0.1.0

2. Import in your Typst file

Add this to your .typ file:

#import "@preview/babble-bubbles:0.1.0": *

Version History

0.1.0
c9229165e571...

typst-babble-bubbles

A package to create callouts in typst, inspired by the Obsidan callouts.

Use preset callouts, or create your own!

callouts_example

Usage

Import the package

#import "@preview/babble-bubbles:0.1.0": *

Or grab it locally and use:

#import "@local/babble-bubbles:0.1.0": *

Presets

Here you can find a list of presets and an example usage of each.
You can customise them with the same parameters as the callout function. See the Custom callouts for more details.

#info[This is information]

#success[I'm making a note here: huge success]

#check[This is checked!]

#warning[First warning...]

#note[My incredibly useful note]

#question[Question?]

#example[An example make things interesting]

#quote[To be or not to be]

Custom callouts

callout

Create a default callout.
Tweak the parameters to create your own!

callout(
  body,
  title: "Callout",
  fill: blue,
  title-color: white,
  body-color: black,
  icon: none)

Tips

You can create aliases to more easily handle your
newly create callouts or customise presets by using with.

#let mycallout = callout.with(title: "My callout")

#mycallout[Hey this is my custom callout!]