This template collects and combines some great frameworks (all open source) to create one good looking HTML
presentation via rmarkdown
. The idea is to dynamically create presentations with R
as back-end to render graphics, create analyses, or include applications such as shiny. For an introduction to rmarkdown
see here. The front-end is a revealjs
presentation with some adaptions to the css
to get a nice looking and easy customizeable presentation framework.
This template highly depends on the great work others have already done:
First clone the repository:
# ssh
git clone [email protected]:schalkdaniel/revealjsRmd.git
# https
git clone https://github.com/schalkdaniel/revealjsRmd.git
Initialize the submodules:
git submodule init
git submodule update
The shortcut to install all at once would be:
# ssh
git clone --recurse-submodules [email protected]:schalkdaniel/revealjsRmd.git
# https
git clone --recurse-submodules https://github.com/schalkdaniel/revealjsRmd.git
Finally, use rmarkdown::render("index.Rmd")
to create the final index.html
and the needed index_files
which includes all required revealjs
files.
index.Rmd
: This is the main file which is rendered byrmarkdown
. To use the template as is the YAML header must include theheader.html
,after.html
, andmyreveal.css
. The header could look like this (with some ohter options):--- title: "<code>My Presentation</code>" subtitle: "This is a revealjs presentation" author: "Created by <a href='' target='_blank'>My Name</a>" date: "March 22, 2005" output: revealjs::revealjs_presentation: css: myreveal.css transition: slide includes: in_header: header.html after_body: after.html self_contained: false reveal_options: controls: true center: true slideNumber: true ---
myreveal.css
: This file cares about coloring and appearence (e.g. the font-family).in_header
: The heaer includes some additional stuff like Google Fonts or the path to the Font-Awesome directory (which is included as submodule).after_body
: This file includes somerevealjs
customizations which cannot be done directly within the YAML header.
The myreveal.css
has some variables which are defined at the beginning. Those variables can be specyfied to use another color scheme:
--main-color
: This color is used to set accents like<a>
coloring, the process bar, or the control arrows.--main-hover-color
: Color when hovering over an<a>
tagged text.--main-discreet-color
: Color, which is used to discreetly put objects out of focus (such as inactive arrows).
The background image can be customized or removed by changing or removing the parallaxBackgroundImage
initialization in after.html
.
To use a custom Google Fonts for the font face go to the Google Fonts website and:
- Search for a font you like.
- Select the font and copy the
HTML
code to include the font into the header. - Paste the code into
header.html
. - Adjust the font-family variable
--main-font-family
inmyreveal.css
.