forked from exporl/kuleuven-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposter-r-example.Rmd
122 lines (88 loc) · 2.72 KB
/
poster-r-example.Rmd
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
122
---
title: Thorough research of this special topic regarding the influence of various factors
author: [Poster Author 1, Poster Author 2]
email: [email protected]
institute: Institute, Dept., University
longinstitute: Institute, Department, University, Country
web: 'university.edu'
biblio-files: parsed-references.bib
posteroptions: width=90,height=110,scale=1 #,grid
headerheight: 13cm
# large, Large, LARGE, huge, Huge, veryHuge, VeryHuge, VERYHuge
titlefont: size=\veryHuge,series=\bfseries
authorfont: size=\huge
institutefont: size=\Large
knit: (function(input, encoding, make = TRUE) { source('templates/makefile-renderer.R', local = TRUE) })
---
%% smart
%% to=latex
%% template=templates/poster.tex
%% filter=templates/poster-filters.py
%% biblatex
```{r packages-and-options, cache=FALSE}
library('ggplot2')
library('knitr')
theme_set(theme_grey(base_size=10))
knitr::opts_chunk$set(fig.width = 16, fig.height = 4)
```
[columns=2]
[column]
# Introduction
### Graphs
![two figures side-by-side]({width=0.5\linewidth}presentation-examplefig,{width=0.5\linewidth}presentation-examplefig-magenta)
<!-- Comments -->
### Default lists
- Citations [@Macherey2006] and @Macherey2006
- references have a clickable link to Pubmed or Amazon
- Standard abreviations \\eg and \\ie for \eg and \ie
- Units like \pps{900}
- **Highlights** and *highlights*
### Numbered lists
1. First paragraph
2. Second paragraph
3. Third paragraph
Continued paragraphs
# Iris data
```{r iris, cache=TRUE, echo=FALSE, fig.cap='iris data'}
ggplot(iris, aes(Sepal.Length, Petal.Length)) +
geom_point(aes(color = Species)) +
facet_wrap(~ Species)
```
# Blub
\lipsum[3-5]
[column]
# Big figure
![electrodes!]({width=.7\linewidth}presentation-examplefig-electrodes)
# Baz
\lipsum[6-7]
### Table
<!-- this is still latex :-) -->
\begin{table}
\rowcolors{2}{kuldark!10}{kuldark!20}
\begin{tabular}{lrrrllll}
\rowcolor{kuldark!20}
& & & & & &
\multicolumn{2}{c}{\cellcolor{kuldark!20}Blub} \\
Bla & Blub & Bla & Blub & Bla & Blub &
Bla & Blub \\
Bla & Blub & Bla & Blub & Bla & Blub & Blablublbaba & Blubblabalbal \\
Blub & Bla & Blub & Bla & Blub & Bla & Blub & Bla \\
Bla & Blub & Bla & Blub & Bla & Blub & Bla & Blub \\
Blub & Bla & Blub & Bla & Blub & Bla & Blub & Bla \\
Bla & Blub & Bla & Blub & Bla & Blub & Bla & Blub \\
Blub & Bla & Blub & Bla & Blub & Bla & Blub & Bla \\
\end{tabular}
\caption{\lipsum[9]}
\label{tab:blub}
\end{table}
\vskip0.4cm
[/columns]
[columns=2]
[column=0.4]
# Conclusions
\lipsum[13]
[column]
# Bibliography
\printbibliography
\vskip4.4cm
[/columns]