How to add speaker notes on the title slide using touying?

I am trying to put speaker notes on my title-slide, is this possible?
Trying:

#import "@preview/touying:0.6.1": *
#import themes.university: *
#show: university-theme.with(
  aspect-ratio: "16-9",
  config-common(
    preamble: {},
    show-notes-on-second-screen: right,
  ),

  config-info(
    title: [A test],
    author: [some guy],
    date: datetime.today(),
    institution: [
      A university
    ],
  ),
)

#title-slide(config-info)
#speaker-note[
  test
]
= abc

Just puts the notes on the “abc” slide

Please read the following guide:

Specifically for your post:

  • Please format your post title as a question
  • The code example is not complete. It would need the part that includes touying. It is, however, formatted correctly so that was done properly

Hi there, from what I see it does not look like speaker-note can be used with University theme’stitle-slide. Something like this would have been nice:

//Not working
#title-slide(speaker-note: [This is a note])
//Also not working
#title-slide(extra: (speaker-note: [This is a note]))

Your next best bet would be to create a feature request or at least discuss the issue with the package author.

1 Like