Crunch slides have titles and subtitles. You can change these features at either the deck level by assigning a character vector which is the same length as the deck to the CrunchDeck, or by assigning character strings to the the slide.
titles(x)
titles(x) <- value
title(x)
title(x) <- value
subtitles(x, value)
subtitles(x) <- value
subtitle(x, value)
subtitle(x) <- value
# S4 method for class 'CrunchDeck'
titles(x)
# S4 method for class 'CrunchDeck'
titles(x) <- value
# S4 method for class 'CrunchDeck'
subtitles(x)
# S4 method for class 'CrunchDeck'
subtitles(x) <- value
# S4 method for class 'SlideCatalog'
titles(x)
# S4 method for class 'SlideCatalog'
titles(x) <- value
# S4 method for class 'SlideCatalog'
subtitles(x)
# S4 method for class 'SlideCatalog'
subtitles(x) <- value
# S4 method for class 'CrunchSlide'
title(x)
# S4 method for class 'CrunchSlide'
title(x) <- value
# S4 method for class 'CrunchSlide'
subtitle(x)
# S4 method for class 'CrunchSlide'
subtitle(x) <- value
x
, modified
if (FALSE) { # \dontrun{
titles(deck)
titles(deck) <- c(new_title1, new_title2)
slide <- deck[[1]]
title(slide) <- "new title"
subtitle(slide) <- "new subtitle"
subtitles(deck)
} # }