title: "Illinois Blue and Orange Beamer Theme" short-title: "Beamer
Slides" author: "John and Mary Doe" short-author: "J & M Doe" date:
'r format(Sys.Date(), "%B %d, %Y")' # Month DD, YYYY (Main
Slide) short-date: 'r format(Sys.Date(), "%m/%d/%Y")' #
MM/DD/YYYY (Lower Right) institute: "University of Illinois at
Urbana-Champaign" short-institute: "UIUC" department: "Department of
Magic" # Institute must be defined license: "Did you license this slide
deck? " section-titles: false # Provides slide headings safe-columns:
true # Enables special latex macros for columns. output:
uiucthemes::beamer_illinois ---
Frame content
Unordered List
Ordered List
Content inside of a box
\begin{exampleblock}{Binomial Theorem} \begin{equation} f\left(k\right) = \binom{n}{k} p^k\left(1-p\right)^{n-k} \label{eq:binom} \end{equation} \end{exampleblock}
Hello Equation \ref{eq:binom}
This theme supports special LaTeX macros \beingcols and
\endcols that allows for markdown to be blended with LaTeX
without triggering the raw_tex
extension. To enable this feature, the safe-columns key in
the YML head matter must be set equal to true.
\begincols
\column{.49\linewidth}
\column{.49\linewidth}
\endcols
```{r}
x = 2 y = 3
x + y ```
Inline R code refering to variable in previous code chunk:
r x