We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
outline-slide
utils.slides(s)
I wanted to create a title_slide with an extra option. I followed the accepted solution shown in #20 , which looks something like this:
title_slide
extra
#import "@preview/touying:0.4.0": * #let s = themes.dewdrop.register( aspect-ratio: "16-9", footer: [Dewdrop], navigation: none, ) #let s = (s.methods.info)( self: s, title: [Title], subtitle: [Subtitle], author: [Authors], date: datetime.today(), institution: [Institution], ) #let (init, slides, touying-outline, alert) = utils.methods(s) #show: init #show strong: alert #let (slide, title-slide, new-section-slide, focus-slide) = utils.slides(s) #show: slides.with(title-slide: false, outline-slide: false) #title-slide(extra: "Extra")
outline-slide: false
I cannot import the outline-slide from utils.slide(s)
utils.slide(s)
#let (slide, title-slide, new-section-slide, focus-slide, outline-slide) = utils.slides(s) #show: slides.with(title-slide: false, outline-slide: false) #title-slide(extra: "Extra") // does not work #outline-slide()
The workaround solution for this is
#let (slide, title-slide, new-section-slide, focus-slide) = utils.slides(s) #show: slides.with(title-slide: false, outline-slide: false) #title-slide(extra: "Extra") // workaround for #outline-slide() #slide(heading(level: 2, s.outline-title) + parbreak() + (s.methods.touying-outline)(self: s, cover: false))
The text was updated successfully, but these errors were encountered:
7313e28
done in 0.4.1.
Sorry, something went wrong.
No branches or pull requests
I wanted to create a
title_slide
with anextra
option. I followed the accepted solution shown in #20 , which looks something like this:title_slide
with theextra
option working.outline-slide: false
shows the outline slide before thetitle_slide
which is not the expected behaviour.Issue
I cannot import the
outline-slide
fromutils.slide(s)
The workaround solution for this is
The text was updated successfully, but these errors were encountered: