forked from cainesap/nonbeamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.tex
121 lines (98 loc) · 3.04 KB
/
intro.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
\documentclass{beamer}
\usepackage[UKenglish]{babel}
\usepackage{graphicx}
\usepackage{fourier} % font
\usepackage[T1]{fontenc}
\usepackage{pifont} % dingbats
%\usepackage{url}
%\urlstyle{same} % to keep fonts the same for links
\usepackage{microtype} % for font expansion and character protusion; goes with DisableLigatures below
\DisableLigatures{encoding = *, family = *} % to prohibit ligatures (e.g. fi, ff)
\frenchspacing % so as not to insert more than one space after characters
\usepackage{booktabs} % publication quality tables
%\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{hyperref}
\title{Beyond LaTeX/Beamer: creating presentations with (r)markdown and Shiny}
\author{Andrew Caines}
\institute{ALTA Institute / DTAL, University of Cambridge}
\date{CambR meeting 27-Oct. 2014}
\begin{document}
\frame{\titlepage}
\begin{frame}
\frametitle{About me}
\begin{itemize}
\item postdoc, linguist, R-user
\pause
\item U.Edinburgh [ugrad]
\pause
\item U.Cambridge [pgrad]
\pause
\item EBI [job]
\pause
\item U.Cambridge [pdoc]
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Serendipity}
\begin{itemize}
\item conference presentation, Dublin, August
\item project review, Cambridge, October
\pause
\item CambR user group Google group, 10-Jun: \href{https://groups.google.com/d/msg/cambridge-r-user-group/yp8QJRuEaFY/1Bsb85xtqVgJ}{Stephen Eglen 'Making slides in R with slidify/rmarkdown/ ...'}
\begin{enumerate}
\item Slidify [Rmarkdown]
\item reveal.js [HTML; Rstudio?]
\item Google I/O 2012 [HTML / markdown]
\end{enumerate}
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Why not Beamer?}
\begin{itemize}
\item presenter mode
\item web app demonstrations
\item dynamic plots
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Demonstrations}
\begin{itemize}
\item remark.js [markdown + HTML + CSS]
\item reveal.js [Rmarkdown]
\item Shiny App [R (+ HTML, CSS, markdown)]
\item \emph{n.b.} no \href{http://ramnathv.github.io/slidify/}{Slidify}!
\item \emph{disclaimer}: A.F.A.I.K.
\pause
\item -> go to demos
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Summary}
\begin{center}
\begin{tabular}{lll|cc}
\textbf{method} & \textbf{lang} & \textbf{auth} & \textbf{ease-learn} & \textbf{lite-dev} \\
\hline
remark.js & markdown & gnab & \ding{52} & \ding{52} \\
reveal.js & Rmarkdown & jjallaire & \ding{52} & \ding{56} \\
Shiny & R(markdown) & Rstudio & \ding{56} & \ding{56} \\
\end{tabular}
\vspace{10mm}
\begin{tabular}{l|cccc}
\textbf{method} & \textbf{P-mode} & \textbf{Rscript} & \textbf{dynamic} & \textbf{PDF} \\
\hline
remark.js & \ding{52} & \ding{56} & \ding{56} & \ding{52} \\
reveal.js & \ding{52} & \ding{52} & \ding{56} & \ding{56} \\
Shiny & \ding{56} & \ding{52} & \ding{52} & \ding{56} \\
\end{tabular}
\end{center}
\end{frame}
\begin{frame}
\frametitle{Thank you}
\begin{itemize}
\item GitHub: \url{https://github.com/cainesap/nonbeamer}
\item email: [email protected]
\item website: \url{http://apc38.user.srcf.net}
\item twitter: @cainesap
\end{itemize}
\end{frame}
\end{document}