How to customise the title slide - touying stargazer theme?

I am using the stargazer theme from touying (touying/themes/stargazer.typ at main · touying-typ/touying · GitHub). Here is an example of my code:

#import "@preview/touying:0.6.1": *
#import themes.stargazer: *

#import "@preview/numbly:0.1.0": numbly

#show: stargazer-theme.with(
  aspect-ratio: "16-9",
  lang: "en",
  config-info(
    title: [XXXX],
    short-title: [XXXX],
    subtitle: [XXXX],
    author: [XXXX],
    institution: [XXXX],
    date: datetime.today(),
  ),
  //config-store( 
  //  navigation: none 
  // )
)

#set heading(numbering: numbly("{1}.", default: "1.1."))

#title-slide()

#outline-slide()

= Introduction
...
= Methodology
...

I would like the navigation bar showing the presentation sections not to appear on the title slide. If I use:

config-store( 
    navigation: none 
)

it applies to the entire presentation.

So, how can I do it?

Thanks for your help :slight_smile:

I found the solution!

#title-slide(
   config: config-page(header: none)
)

or

#title-slide(
  config: config-store(navigation: none)
)
1 Like