_       _       
  (_) ___ | |_ ____
  | |/ _ \| __|_  /
  | | (_) | |_ / / 
 _/ |\___/ \__/___|
|__/               

More presentations in markdown with Beamer and Pandoc

This is another Pandoc / Beamer example presentation. This one includes:

Some useful links I came across while experimenting with this:

This is the pandoc command to create the presentation PDF:

pandoc -t beamer test.md -o test.pdf

This is the full markdown file ("test.md"):

---
title:
- My Example Beamer Presentation
author:
- Ted Burke
date:
- March 22, 2020
theme:
- default
fonttheme:
- structurebold
colortheme:
- default
header-includes:
- \setbeamercolor{normal text}{fg=black,bg=yellow!15}

---


# What is this presentation about?

- Pandoc - Wikipedia describes Pandoc as "a free-software document converter, widely used as a writing tool (especially by scholars) and as a basis for publishing workflows."
- Beamer - Wikipedia describes Beamer as "a LaTeX document class for creating presentation slides, with a wide range of templates and a set of features for making slideshow effects."


# A slide with an image

![Cat and dog](catdog.jpg)


# Some example code

\tiny
~~~{.cpp}
#include <stdio.h>

int main()
{
    printf("Hello.\n");

    return 0;
}

#include <stdio.h>

int main()
{
    printf("Hello.\n");

    return 0;
}

#include <stdio.h>

int main()
{
    printf("Hello.\n");

    return 0;
}
~~~
\normalsize

# A slide with columns

This slide has some columns...

::: columns

:::: column

A list of items:

- One
- Three
- Two

::::

:::: column
![Cat and dog](catdog.jpg)
::::

:::

# Some slides are text-heavy

- This is quite a long and unwieldy sentence to have included in a bullet point in a presentation, especially since it adds little of value.
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

# Displaying images

![Cat with laptop](cattop.jpg){ width=50% }

# Displaying images

![Cat and bird](catbird.jpg)

# Favourite 1980s bands

- Cocteau Twins 
- New Order
- The Cure
- Talk Talk

# Equations 

The roots, $r_1$ and $r_2$ of a quadratic equation $ax^2 + bx + c = 0$ can be found using the following formula.

$$r_{1,2} = \frac{-b \pm \sqrt{b^2-4ac}}{2a}$$

# Another equation 

Here's another more complicated equation:

$$ \frac{x^n + y^n}{x^n - y^{\frac{1}{n}}} = \int_0^\pi z^n dz $$