-
|
I want to change the header in the middle of a presentation. Is it possible? |
Beta Was this translation helpful? Give feedback.
Answered by
OrangeX4
Mar 7, 2026
Replies: 1 comment
-
|
Use // Initial header
#show: default-theme.with(
config-page(
header: text(gray, utils.display-current-short-heading(level: 2)),
),
)
// Later in presentation - change header
#show: touying-set-config.with(config-page(
header: text(
blue,
weight: "bold",
utils.display-current-short-heading(level: 1),
),
))You can also override headers on individual slides using the config parameter: #slide(config: config-page(header: [Custom Header for This Slide]))[
Slide content with custom header
] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
OrangeX4
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
#show: touying-set-config.with(config-page(header: ...))to change the header configuration at any point in your presentation:You can also override headers on individual slides using the config parameter: