A package to create callouts in typst, inspired by the Obsidan callouts.
Use preset callouts, or create your own!
Import the package
#import "@preview/babble-bubbles:0.1.0": *
Or grab it locally and use:
#import "@local/babble-bubbles:0.1.0": *
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]
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)
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!]