We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 725e918 commit a551685Copy full SHA for a551685
analysis/reproducibility.Rmd
@@ -4,6 +4,7 @@ author: "John Blischak"
4
date: "2020-06-18"
5
output:
6
ioslides_presentation:
7
+ css: "slides.css"
8
widescreen: true
9
editor_options:
10
chunk_output_type: console
analysis/slides.css
@@ -0,0 +1,6 @@
1
+img {
2
+ display: block;
3
+ margin: 0 auto;
+ max-width: 90%;
+ max-height: 75%;
+}
code/create-slides.R
@@ -3,8 +3,11 @@
rmarkdown::render(
input = "analysis/reproducibility.Rmd",
output_format = rmarkdown::ioslides_presentation(
- widescreen = TRUE
+ widescreen = TRUE,
+ css = "slides.css"
),
output_file = "reproducibility-slides.html",
output_dir = "docs/"
11
)
12
+
13
+browseURL("docs/reproducibility-slides.html")
0 commit comments