mirror of
https://github.com/eddelbuettel/binb
synced 2024-12-22 04:29:59 +01:00
additional demos
This commit is contained in:
parent
67f13342d4
commit
002dd4cc69
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
|||||||
|
2018-09-24 Dirk Eddelbuettel <edd@debian.org>
|
||||||
|
|
||||||
|
* inst/presentoDemo/presentoDemo.Rmd: Longer demo
|
||||||
|
* inst/presentoDemo/presentoDemo.pdf: Ditto
|
||||||
|
|
||||||
|
* docs/presento_minimal.pdf: Short demo for README
|
||||||
|
* docs/presento_minimal.gif: Ditto
|
||||||
|
|
||||||
|
* docs/metropolis_demo: Adding longer demo
|
||||||
|
* docs/metropolis_iqss: Ditto
|
||||||
|
* docs/metropolis_presento: Ditto
|
||||||
|
|
||||||
2018-09-23 Dirk Eddelbuettel <edd@debian.org>
|
2018-09-23 Dirk Eddelbuettel <edd@debian.org>
|
||||||
|
|
||||||
* inst/rmarkdown/templates/presento/resources/template.tex: Do not
|
* inst/rmarkdown/templates/presento/resources/template.tex: Do not
|
||||||
|
BIN
docs/iqss_demo.pdf
Normal file
BIN
docs/iqss_demo.pdf
Normal file
Binary file not shown.
BIN
docs/metropolis_demo.pdf
Normal file
BIN
docs/metropolis_demo.pdf
Normal file
Binary file not shown.
BIN
docs/presento_demo.pdf
Normal file
BIN
docs/presento_demo.pdf
Normal file
Binary file not shown.
BIN
docs/presento_minimal.gif
Normal file
BIN
docs/presento_minimal.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 328 KiB |
BIN
docs/presento_minimal.pdf
Normal file
BIN
docs/presento_minimal.pdf
Normal file
Binary file not shown.
87
inst/presentoDemo/presentoDemo.Rmd
Normal file
87
inst/presentoDemo/presentoDemo.Rmd
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
---
|
||||||
|
author: Rahul Saha
|
||||||
|
address: www.ratulsaha.com
|
||||||
|
title: PRESENTO
|
||||||
|
subtitle: clean, simple and extensible
|
||||||
|
date: \today
|
||||||
|
output: binb::presento
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
## Presento
|
||||||
|
|
||||||
|
- \begin{center}\largetext{The design is \underline{clean}}\end{center} \bigskip
|
||||||
|
- \begin{center}\largetext{The rules are \underline{simple}}\end{center} \bigskip
|
||||||
|
- \begin{center}\largetext{The code is \underline{extensible}}\end{center}
|
||||||
|
|
||||||
|
## Open Source Fonts
|
||||||
|
|
||||||
|
- \montserratfont This is \textsc{Montserrat} \bigskip
|
||||||
|
- \notosansfont This is \textsc{Noto Sans} \bigskip
|
||||||
|
- \latolightfont This is Lato (light) \bigskip
|
||||||
|
- \inconsolatafont This is inconsolata \bigskip
|
||||||
|
- \textsc{This is Alegreya Sans small caps} \bigskip
|
||||||
|
|
||||||
|
## Color Palette
|
||||||
|
|
||||||
|
\begin{center}
|
||||||
|
\crule[colordgray] \crule[colorhgray] \crule[colorblue] \crule[colorgreen] \crule[colororange]
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
____
|
||||||
|
|
||||||
|
\begin{center}
|
||||||
|
\hugetext{BIG BOLD TEXT}
|
||||||
|
\medskip
|
||||||
|
\small but background color does not work
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
|
||||||
|
____
|
||||||
|
|
||||||
|
\tikz[overlay,remember picture] \node[opacity=0.8, at=(current page.center)]{%
|
||||||
|
\includegraphics[width=\paperwidth]{images/skeleton}};
|
||||||
|
\begin{textblock}{7}(7,2.5)
|
||||||
|
{\color{colorblue}\hugetext{\textbf{RUN!}}}
|
||||||
|
\end{textblock}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## R Appendix: R Figure Example
|
||||||
|
|
||||||
|
The following code generates the plot on the next slide (taken from
|
||||||
|
`help(bxp)` and modified slightly):
|
||||||
|
|
||||||
|
\small
|
||||||
|
|
||||||
|
```{r pressureCode, eval=FALSE}
|
||||||
|
library(stats)
|
||||||
|
set.seed(753)
|
||||||
|
bx.p <- boxplot(split(rt(100, 4),
|
||||||
|
gl(5, 20)), plot=FALSE)
|
||||||
|
bxp(bx.p, notch = FALSE, boxfill = "lightblue",
|
||||||
|
frame = FALSE, outl = TRUE,
|
||||||
|
main = "Example from help(bxp)")
|
||||||
|
```
|
||||||
|
|
||||||
|
## R Appendix: R Figure Example
|
||||||
|
|
||||||
|
```{r pressureFig, echo=FALSE}
|
||||||
|
library(stats)
|
||||||
|
set.seed(753)
|
||||||
|
bx.p <- boxplot(split(rt(100, 4),
|
||||||
|
gl(5, 20)), plot=FALSE)
|
||||||
|
bxp(bx.p, notch = FALSE, boxfill = "lightblue",
|
||||||
|
frame = FALSE, outl = TRUE,
|
||||||
|
main = "Example from help(bxp)")
|
||||||
|
```
|
||||||
|
|
||||||
|
## R Appendix: R Table Example
|
||||||
|
|
||||||
|
A simple data example:
|
||||||
|
|
||||||
|
```{r notkableEx}
|
||||||
|
mtcars[1:5, 1:5]
|
||||||
|
```
|
||||||
|
|
BIN
inst/presentoDemo/presentoDemo.pdf
Normal file
BIN
inst/presentoDemo/presentoDemo.pdf
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user