How to add a sticker on the right margin of the page?

Hi,

I would like to add a sticker on the right side of my paragraph. I need to include some text on the sticker. Any help is welcome.

Thank you.

Hi. On the right side of the page or on the right side of the paragraph? Is this just a raster image?

On the right side of the paragraph.

#let sticker(size, ..args) = circle(
  fill: green,
  radius: 3em * size,
  ..args,
  align(center + horizon, text(1em * size, black, upper[sticker])),
)
#set page(
  background: {
    place(horizon + right, dx: -2mm, rotate(-20deg, sticker(1)))
    place(top + right, dx: 8mm, dy: -8mm, rotate(20deg, sticker(2)))
  },
  foreground: place(bottom + right, sticker(3)),
)
#set par(justify: true)

#lorem(100)

#lorem(100)

#lorem(100)

#lorem(100)

#lorem(100)

#lorem(100)

page.background
page.foreground
place

1 Like

Hi Andrew,
Thank you very much for your support.

1 Like