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
gezepi
June 23, 2025, 8:50am
2
Please read the following guide:
Your questions about using Typst and the web app go in this category.
This category should be a useful resource for both those who post questions and those who later search it for answers. To get there, we ask you to keep in mind the following if you ask a question:
The Basics
Each post should contain one distinct question on Typst. If you have multiple questions, do not hesitate to create multiple posts! Posts that are discussions or otherwise not questions looking for help should go into the…
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