UG Slides using MARP

What is MARP?

Create beautiful slide decks using an intuitive Markdown experience

MARP (also known as the Markdown Presentation Ecosystem) provides an intuitive experience for creating beautiful slide decks. You only have to focus on writing your story in a Markdown document.

Some Features

  • Based on CommonMark
  • Directives and extended syntax
  • Built-in themes and CSS theming
  • Export to HTML, PDF, and PowerPoint
  • Marp family: The official toolset
  • Pluggable architecture
  • Fully open-source❤

Normal/Simple Mode

Marp creates slides with the next format:

<section>
  <header>Header content</header>
  <h1>Page 1</h1>
  <footer>Footer content</footer>
</section>

Where each slide is a section, so this can be changed with CSS styles. In the default style, the content starts at the vertical center of the slide.

Custom onecolumn slide style

By using css styles we can configurate the slide to produce a Powerpoint like layout.

  • In this layout the content begins at the top of the slide.
  • Each paragraph <p> is justify to be a more readable text.

Custom twocolumn slide style

This slide is styled to be a doble columns slide, this is produced by using to html elements inside the <twocolumn> element.

  • In this case, this is the first column or the <column1> element.

This slide is styled to be a doble columns slide, this is produced by using to html elements inside the <twocolumn> element.

  • And this is the second column or the <column2> element.

Custom ti slide style

This slide is called ti that stands for Text and Image slide. We can see the image floating at the right of the slide.

Custom it slide style

Conversely, this slide is called it that stands for Image and Text slide. We can see the image floating at the left of the slide.

slide settings

---------------------------------------

TITLE OF THE PRESENTATION

---------------------------------------

---------------------------------------

BODY OF PRESENTATION

---------------------------------------

PUT TEXT DOWN HERE

PUT TEXT DOWN HERE

PUT TEXT DOWN HERE

PUT TEXT DOWN HERE

PUT TEXT DOWN HERE

PUT TEXT DOWN HERE

PUT TEXT DOWN HERE

---------------------------------------

END OF PRESENTATION

---------------------------------------