In Latex settings, the Beamer is a well-known class for making slides. In the pdf presentation template, this class was modified with the MPI theme. To build a presentation from R Markdown, you specify the latex_presentation output format and configure YAML metadata to use template features. Using the # and ## heading tags, you may construct a slide show that is divided into chapters and sections. Here's an example of YAML and output presentation.

--- 
title: Daily Report
author: [Ahmad Ehyaei, Sara Ershadmanesh]
date: "2012-01-19"
affiliation: Max-Planck Institute 
fontsize: 10pt
titlepate-portrait: false
titlepage-author-text-color: ffffff
logo-primary: src/icon/MPILogoGray.eps
frametitle-logo: src/icon/MPIBCNNWhite.eps
output:
  MPIThemes::latex_presentation
---

The two main features in the presentation are titlepate-portrait and titlepage-bottom-background. The titlepage style can be defined in two ways: landscape or portrait, and is controlled by titlepate-portrait. You can also put an image in the bottom background by using titlepage-bottom-background, as you see in the below examples. For more details, click on the image and see the full document for each example.

For best output customization, there are many features for the title page and section pages that are embedded in the template that can be set in YAML configuration.

Title Page

Below is an example of using the titlepage settings.

--- 
title: Daily Report
author: [Ahmad Ehyaei, Sara Ershadmanesh]
date: "2012-01-19"
affiliation: Max-Planck Institute 
fontsize: 10pt
titlepate-portrait: true
titlepage-bottom-background: src/img/damavand.png
logo-primary: src/icon/MPILogoGray.eps
frametitle-logo: src/icon/MPIBCNNWhite.eps
output:
  MPIThemes::latex_presentation
---

Frame Page



Ehyaei/MPIThemes documentation built on Jan. 13, 2022, 7:28 p.m.