-
Notifications
You must be signed in to change notification settings - Fork 857
Keyboard shortcuts
Rolf edited this page Jun 4, 2018
·
3 revisions
All of these shortcuts can also be seen during a presentation by pressing H or ?
- h or ?: Toggle the help window
- j: Jump to next slide
- k: Jump to previous slide
- b: Toggle blackout mode
- m: Toggle mirrored mode.
- c: Create a clone presentation on a new window
- p: Toggle PresenterMode
- f: Toggle Fullscreen
- t: Reset presentation timer
- <number> + <Return>: Jump to slide <number>
<title>Title</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
<textarea id="source">
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
</style>
Code:
def add(a,b)
a + b
end
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>