aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRazvan Caliman <razvan.caliman@gmail.com>2015-12-03 09:47:23 +0000
committerRazvan Caliman <razvan.caliman@gmail.com>2015-12-03 09:47:23 +0000
commitd06981c60cff71e11f6831a79756229bbc24a5fa (patch)
tree2e849db560fe3f1883c9866c4c1285828804d129 /README.md
parentb49664621f2a4ecb683a952e4dee86be2258453f (diff)
parent8bbc2971acafafdb6194efe372663d8ec59b6f0a (diff)
downloadfosdem-2018-presentation-d06981c60cff71e11f6831a79756229bbc24a5fa.tar
fosdem-2018-presentation-d06981c60cff71e11f6831a79756229bbc24a5fa.tar.gz
Merge branch 'muted-video' of github.com:oslego/reveal.js into muted-video
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 01f01dc..c52a492 100644
--- a/README.md
+++ b/README.md
@@ -502,15 +502,15 @@ You can also use different in and out transitions for the same slide:
```html
<section data-transition="slide">
- The train goes on …
+ The train goes on …
</section>
-<section data-transition="slide">
- and on …
+<section data-transition="slide">
+ and on …
</section>
-<section data-transition="slide-in fade-out">
+<section data-transition="slide-in fade-out">
and stops.
</section>
-<section data-transition="fade-in slide-out">
+<section data-transition="fade-in slide-out">
(Passengers entering and leaving)
</section>
<section data-transition="slide">
@@ -813,7 +813,7 @@ The multiplex plugin needs the following 3 things to operate:
More details:
#### Master presentation
-Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation:
+Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation:
1. ```npm install node-static```
2. ```static```
@@ -938,7 +938,7 @@ Reveal.initialize({
If you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).
-The plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value.
+The plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value.
Below is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.
@@ -951,7 +951,7 @@ Reveal.initialize({
mathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
},
-
+
dependencies: [
{ src: 'plugin/math/math.js', async: true }
]