config-info
config-info(title, short-title, subtitle, short-subtitle, author, date, institution, contact, logo, extra, ..args)(source)The configuration of important information of the presentation.
Example:
config-info(
title: "Title",
subtitle: "Subtitle",
author: "Author",
date: datetime.today(),
institution: "Institution",
contact: "name@mail.com",
)
title : content
The title of the presentation, which will be displayed in the title slide.
short-title : content | auto
The short title of the presentation, which will usually be displayed in the footer of the slides. If you set it to auto, it will be the same as the title.
subtitle : content
The subtitle of the presentation.
short-subtitle : content | auto
The short subtitle of the presentation, which will usually be displayed in the footer of the slides. If you set it to auto, it will be the same as the subtitle.
author : content
The author of the presentation.
date : datetime | content
The date of the presentation. You can use datetime.today() to get the current date.
institution : content
The institution of the presentation.
contact : content
Contact information for the presentation.
logo : content
The logo of the institution.
extra : dict
A dict of extra information. You may use it like extra: (key1: value1, key2: value2) to pass extra information. A theme can then access it as self.info.extra.key1, self.info.extra.key2.
Returns: dictionary