HaTeX-3.0.0: LaTeX code writer.

Text.LaTeX.Packages.Beamer.Monad

Contents

Description

For contributors: This module was automatically generated by HaTeX-meta. So, please, don't make any change here directly, because this is intended to be generated from Text.LaTeX.Packages.Beamer module via HaTeX-meta, and therefore, changes must to be done in these places.

Synopsis

Beamer package

beamer :: Monad m => LaTeXT_ mSource

The beamer document class. Importing a package is not required. Example:

  documentclass [] beamer

Beamer commands

frame :: Monad m => LaTeXT_ m -> LaTeXT_ mSource

A presentation is composed of a sequence of frames. Each frame is created with this function.

frametitle :: Monad m => LaTeXT_ m -> LaTeXT_ mSource

Set the title of the current frame. Use it within a frame.

framesubtitle :: Monad m => LaTeXT_ m -> LaTeXT_ mSource

Set the subtitle of the current frame. Use it within a frame.

alert :: Monad m => [OverlaySpec] -> LaTeXT_ m -> LaTeXT_ mSource

Highlight in red a piece text. With the OverlaySpecs, you can specify the slides where the text will be highlighted.

pause :: Monad m => LaTeXT_ mSource

Introduces a pause in a slide.

block :: Monad m => LaTeXT_ m -> LaTeXT_ m -> LaTeXT_ mSource

A block will be displayed surrounding a text.

Overlay Specifications

beameritem :: Monad m => [OverlaySpec] -> LaTeXT_ mSource

beameritem works like item, but allows you to specify the slides where the item will be displayed.

uncover :: Monad m => [OverlaySpec] -> LaTeXT_ m -> LaTeXT_ mSource

With uncover, show a piece of text only in the slides you want.

only :: Monad m => [OverlaySpec] -> LaTeXT_ m -> LaTeXT_ mSource

Similar to uncover.

Themes

usetheme :: Monad m => Theme -> LaTeXT_ mSource

Set the Theme employed in your presentation (in the preamble).