Customizing
slidev-theme-aneo provide a lot of options to customize your presentation to fit your needs while remaining consistent and corporate.
Title
The title of your presentation is the first thing your audience will see. It is important to make it look good.
To customize the title, you can use the title
front-matter at the beginning of your .md
slides.
---theme: aneotitle: My presentation---
Author
You can also add an author to your presentation. It will be displayed at the center bottom of each content slide.
---theme: aneotitle: My presentationauthor: John Doe---
Slides number
On each content slide, slide number will be displayed automatically. You can disable it by setting disableSlidesNumber
to true
.
---theme: aneotitle: My presentationdisableSlidesNumber: true---
Slides author
On each content slide, author
will be displayed automatically. You can disable it by setting disableSlidesAuthor
to true
.
---theme: aneotitle: My presentationdisableSlidesAuthor: true---
Slides title
On each content slide, title
will be displayed automatically. You can disable it by setting disableSlidesTitle
to true
.
---theme: aneotitle: My presentationdisableSlidesTitle: true---
Logos
On global settings (head of your .md
slides), you can add a list of logos to display on each slide.
---theme: aneotitle: My presentationlogos: - /logo.png - /logo2.png---
If needed, you can also customize the class of the logos container.
---theme: aneotitle: My presentationlogos: - /logo.png - /logo2.pnglogosClass: h-6---