Skip to content
Stefano Zaghi edited this page Nov 7, 2014 · 1 revision

A titlepage is indeed a special slide rather than a special environment.

It is designed to be a special slide where is extremely easy to have a plain slide theme in order to build a special slide. Indeed all slide are easily customizable, as you seen in the following, but a titlepage can start from a plain theme rather than the default one. To define a titlepage the syntax is:

#titlepage[plain]

where [plain] is optional and if defined set the titlepage slide theme to the default plain, while if it is not defined the titlepage slide adopts the same theme as you have defined for other slides. The slide title of a titlepage is automatically set to a null string thus it has no sense to use the corresponding metadata. On the contrary all other metadata can be used within a titlepage.

The titlepage of the getting started presentation has been made with the following code:

#titlepage[plain]

$box
$style[width:100%;height:35%;background:#4788B3;font-family:'Comic Sans MS', cursive, sans-serif;]
$content[color:white;text-align:center;]{
$title[font-size:200%;padding-top:2%;]
$subtitle[font-size:120%;padding-top:2%;] 
$logo[height:50px;] 
}
$endbox

$box
$style[width:100%;font-family:'Comic Sans MS', cursive, sans-serif;]
$content[text-align:center;]{
a presentation by $authors[font-size:150%]
$emails[font-size:90%;]
$affiliations
}
$endbox

$box
$style[width:100%;padding-top:2%;font-family:'Comic Sans MS', cursive, sans-serif;]
$content[text-align:center;color:#4788B3;]{
$conference[font-size:150%;]
$session[font-size:120%;]
$location[font-size:90%;text-align:right;padding-right:5%;padding-top:5%;]
$date[font-size:90%;text-align:right;padding-right:5%;]
}
$endbox
Clone this wiki locally