File: presentations.rst

package info (click to toggle)
hovercraft 2.7-9
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,532 kB
  • sloc: javascript: 3,206; python: 2,609; makefile: 153; sh: 2
file content (651 lines) | stat: -rw-r--r-- 21,525 bytes parent folder | download | duplicates (4)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
Making presentations
====================

A note on terminology
---------------------

Traditionally a presentation is made up of slides. Calling them "slides" is
not really relevant in an impress.js context, as they can overlap and doesn't
necessarily slide. The name "steps" is better, but it's also more ambiguous.
Hence impress.js uses the terms "slide" and "step" as meaning the same thing,
and so does Hovercraft!


Hovercraft! syntax
------------------

Presentations are reStructuredText files. If you are reading this
documentation from the source code, then you are looking at a
reStructuredText document already.

It's fairly simple, you underline headings to mark them as headings::


    This becomes a h1
    =================

    And this a h2
    -------------


The different ways of underlining them doesn't mean anything, instead the
order of them is relevant, so the first type of underline encountered in the
file will make a level 1 heading, the second type a level 2 heading and so
on. In this file = is used for level 1, and - for level 2.

You can also mark text as *italic* or **bold**, with ``*single asterixes*``
or ``**double asterixes**`` respectively.

You can also have bullet lists::

    * Bullet 1

      * Bullet 1.1

    * Bullet 2

    * Bullet 3

And numbered lists::

    1. Item 1

        1.1. Item 1.1

    2. Item 2

    3. Item 3


You can include images::

    .. image:: path/to/image.png
        :height: 600px
        :width: 800px

As you see you can also specify height and width and loads of other parameters_, but they
are all optional.


You can also include videos::

    .. raw:: html

        <video width="100%" controls>
            <source src="./path/to/your/video.mp4" type="video/mp4">
            Your browser does not support the video element.
        </video>

or audio::

    .. raw:: html

        <audio controls>
            <source src="./path/to/your/audio.mp3" type="audio/mpeg">
            Your browser does not support the audio element.
        </audio>


And you can mark text as being preformatted. You do that by ending the
previous row with double colons, or have a row of double colons by itself::

    ::

        This code here will be preformatted
         and shown with a  monospaced font
        and    all    spaces     preserved.

If you want to add source code, you can use the ``code`` directive, and get
syntax highlighting::

    .. code:: python

        def some_example_code(foo):
            return foo * foo

The syntax highlighting is done by Pygments_ and supports lots and lots of
languages_.

You are also likely to want to put a title on the presentation. You do that
by having a ``.. title::`` statement before the first slide::

    .. title:: This is the presentation title

That is the most important things you'll need to know about reStructuredText for
making presentations. There is a lot more to know, and a lot of advanced features
like links, footnotes, and more. It is in fact advanced enough so you can write a
whole book_ in it, but for all that you need to read the documentation_.


Presenter notes
---------------

To add presenter notes, that will be displayed in the presenter console, use the
following syntax::

    .. note::

        Here goes the presenter note.

External files
--------------

Any image file referenced in the presentation by a relative path will be
copied to the target directory, keeping it's relative path to the
presentation. The same goes for images or fonts referenced in any
CSS files used by the presentation or the template.

Images or fonts referenced by absolute paths or URI's will not be copied.


Styling your Presentation
-------------------------

The css that is included by the default template are:

* ``highlight.css`` contains a default style for code syntax highlighting, as
  that otherwise would be a lot of work. If you don't like the default colors
  or styles in the highlighting, this is the file you should copy and modify.

* ``hovercraft.css``, which only includes the bare minimum: It hides the
  impress.js fallback message, the presenter notes, and sets up a useful
  default of having a step width be 1000 pixels wide.

For this reason you want to include your own CSS to style your slides. To
include a CSS file you add a ``:css:``-field at the top of the presentation::

    :css: css/presentation.css

You can also optionally specify that the css should be only valid for certain
CSS media::

    :css-screen,projection: css/presentation.css
    :css-print: css/print.css

You can specify any number of css files in this way.
You can also add one extra CSS-file via a command-line parameter:

.. code-block:: console

    hovercraft --css=my_extra.css presentationfile.rst outdir/


Styling the console
-------------------

You can also optionally add styles to your slides that are only used when
the slide is shown in the presenter console::

    :css-preview: css/slidepreview.css

You can also style the presenter console itself::

    :css-console: css/console.css

There are default styles that are automatic, anything you add in the file
for the css-console will just be to override the existing styling.


Adding Javascript
-----------------

In a similar fashion you can add Javascript files to either header or body::

    :js-header: js/firstjsfile.js
    :js-body: js/secondjsfile.js

You can also add one extra Javascript-file via a command-line parameter:

.. code-block:: console

    hovercraft --js=my_extra.js presentationfile.rst outdir/


Adding Headers and Footers
--------------------------

If you want static content, content that doesn't move with each slide; for
example a header, footer, your company logo or a slide background pattern,
then you can insert that content with the header and footer commands::

    .. header::

       .. image:: images/company-logo.png


    .. footer::

        "How to use Hovercraft", Yern Busfern, ImaginaryCon 2017

The header will be located in the resulting HTML before the first slide and
the footer will be located after the last slide. However, they will be
displayed statically on every slide, and you will have to position them with
CSS. By default the header will be displayed behind the slides and the footer
in front of the slides, so the header is useful for background designs and
the footer for designs that should be in the foreground.

It doesn't matter where in the presentation you add these commands, I would
recommend that you add them before the first slide.


Styling a specific slide
------------------------

If you want to have specific styling for a specific slide, it is a good
idea to give that slide a unique ID::

    :id: the-slide-id

You can then style that slide specifically with::

    div#the-slide-id {
        /* Custom CSS here */
    }

If you don't give it a specific ID, it will get an ID based on its sequence
number. And that means the slide's ID will change if you insert or remove
slides that came before it, and in that case your custom stylings of that
slide will stop working.

Adding a custom class to slides
-------------------------------

If you want to apply the same style to one or more slides you may prefer adding
a class to those slides instead (or in addition to) a unique ID::

    :class: my-custom-class

You can then style those slides by adding CSS rules with::

    .my-custom-class {
        /* Custom CSS here */
    }


Adding a custom directive
-------------------------

If you want to use a `custom docutils directive`_, you'll want to run
hovercraft in the same process where you register your directive. For example,
you can create a custom startup script like the following:

.. code:: python

    from docutils import nodes
    from docutils.parsers.rst import Directive, directives

    import hovercraft


    class HelloWorld(Directive):
        def run(self):
            para = nodes.paragraph(text='Hello World')
            return [para]

    directives.register_directive('hello-world', HelloWorld)


    if __name__ == "__main__":
        cmd = ['--skip-help', 'slides.rst']
        hovercraft.main(cmd)

While creating your own directive might be daunting, it's possible to reuse
useful directives from other projects. For example, you can reuse `Pelican's
custom code block`_, which adds an ``hl_lines`` option to highlight specific
lines of code. To use that directive, simply add the following import to the
above script:

.. code:: python

    import pelican.rstdirectives


Portable presentations
----------------------

Since Hovercraft! generates HTML5 presentations, you can use any computer
that has a modern browser installed to view or show the presentation. This
allows you both to put up the presentation online and to use a borrowed
computer for your conference or customer presentation.

When you travel you don't know what equipment you have to use when you show
your presentaton, and it's surprisingly common to encounter a projector that
refuses to talk to your computer. It is also very easy to forget your dongle
if you have a MacBook, and there have even been cases of computers going
completely black and dead when you connect them to a projector, even though
all other computers seem to work fine.

The main way of making sure your presentation is portable is to try it on
different browsers and different computers. But the latter can be unfeasible,
not everyone has both Windows, Linux and OS X computers at home. To help make
your presentations portable it is a good idea to define your own @font-face's
and use them, so you are sure that the target browser will use the same fonts
as you do. Hovercraft! will automatically find @font-face definitions and
copy the font files to the target directory.


impress.js fields
-----------------

The documentation on impress.js is contained as comments in the `demo html
file <https://github.com/bartaz/impress.js/blob/master/index.html>`_. It is
not always very clear, so here comes a short summary for convenience.

The different data fields that impress.js will use in 0.5.3, which is the
current version, are the following:

* **data-transition-duration**: The time it will take to move from one slide to
  another. Defaults to 1000 (1 second). This is only valid on the presentation
  as a whole.

* **data-perspective**: Controls the "perspective" in the 3d effects. It
  defaults to 500. Setting it to 0 disables 3D effects.

* **data-x**: The horizontal position of a slide in pixels. Can be negative.

* **data-y**: The vertical position of a slide in pixels. Can be negative.

* **data-scale**: Sets the scale of a slide, which is what creates the zoom.
  Defaults to 1. A value of 4 means the slide is four times larger. In short:
  Lower means zooming in, higher means zooming out.

* **data-rotate-z**: The rotation of a slide in the x-axis, in degrees. This
  will cause the slide to be rotated clockwise or counter-clockwise.

* **data-rotate**: The same as **data-rotate-z**.

* **data-rotate-x**: The rotation of a slide in the x-axis, in degrees. This
  means you are moving the slide in a third dimension compared with other
  slides. This is generally cool effect, if used right.

* **data-rotate-y**: The rotation of a slide in the x-axis, in degrees.

* **data-z**: This controls the position of the slide on the z-axis. Setting
  this value to -3000 means it's positioned -3000 pixels away. This is only
  useful when you use **data-rotate-x** or **data-rotate-y**, otherwise it will
  only give the impression that the slide is made smaller, which isn't really
  useful.


Hovercraft! specialties
-----------------------

Hovercraft! has some specific ways it uses reStructuredText. First of all, the
reStructuredText "transition" is used to mark the separation between
different slides or steps. A transition is simply a line with four or more
dashes::

    ----

You don't have to use dashes, you can use any of the characters used to
underline headings, ``= - ` : . ' " ~ ^ _ * + #``. And just as width
headings, using different characters indicates different "levels". In this
way you can make a hierarchical presentation with multiple "levels" of steps.
However, impress.js does not support that, so this is only useful
if you make your own templates that uses another Javascript library, for
example Reveal.js_. If you have more than one transition level with
the templates included with Hovercraft, the resulting presentation may
behave strangely.

All reStructuredText fields are converted into attributes on the current tag.
Most of these will typically be ignored by the rendering to HTML, but there
are two places where the tags will make a difference, and that is by putting
them first in the document, or first on a slide.

Any fields you put first in a document will be rendered into attributes on
the main impress.js ``<div>``. The only ones that Hovercraft! will use are
``data-transition-duration``, ``skip-help``, ``auto-console`` and
``slide-numbers``.

Any fields you put first in a slide will be rendered into attributes on the
slide ``<div>``. This is used primarily to set the position/zoom/rotation of
the slide, either with the ``data-x``, ``data-y`` and other impress.js
settings, or the ``hovercraft-path`` setting, more on that later.

Hovercraft! will start making the first slide when it first encounters either
a transition or a header. Everything that comes before that will belong to the
presentation as a whole.

A presentation can therefore look something like this::


    :data-transition-duration: 2000
    :skip-help: true

    .. title: Presentation Title

    ----

    This is the first slide
    =======================

    Here comes some text.

    ----

    :data-x: 300
    :data-y: 2000

    This is the second slide
    ========================

    #. Here we have

    #. A numbered list

    #. It will get correct

    #. Numbers automatically


Showing lists item by item
..........................

A common feature in presentation software is to have a list that appears item
by item. This is called "substeps" and is enabled by setting the ``substep``
class on the items to be shown. In Hovercraft! the easiest was to do this is
to use paragraphs, since you can set the class on multiple paragraphs at once::

    .. class:: substep

        This paragraph will be shown when you press <next>

        This will show on the second <next> press

        And this will be shown third

You can also set the class just on individual paragraphs, in which case
all other paragraphs will be visible from the beginning::

    This paragraph will always be visible

    .. class:: substep

        This paragraph will be shown when you press <next>

    And this paragraph will also be always visible

    .. class:: substep

        And this paragraph will show second


You can also do it with bullet lists or numbered lists::

    .. class:: substep

        * This is an unordered list

            * In two levels

            * One new item will be shown on every <next> press

And, as with pagarphs you can have individual control of each item. But
due to the ReStructuredText syntax you can't have individual control
on the first item of a list, it will always be shown from the start::

    #. This will be shown when you get to this slide

       .. class:: substep

    #. The second item shows only after you press <next>

    #. This also will always be shown.

       .. class:: substep

    #. And this will be shown after another <next> press.


Mathematical equations
......................

If you add a ``math`` directive then hovercraft! will add a link to the MathJax_ CDN
so that this::

    .. math:: e^{i \pi} + 1 = 0


will be rendered by the MathJax javascript library. The math directive can also
be used as a "role" with the equations inlined with the text flow. Note that
if you use the math statement, by default the MathJax library will be loaded
from the internet, meaning that your presentation will need network connectivity
to work, which can be a problem when presenting and conferences, which often have
bad network connectivity.

This can be solved by specifying a local copy of mathjax with the --mathjax
command line.


Relative positioning
--------------------

Hovercraft! gives you the ability to position slides relative to each other.
You do this by starting the coordinates with "r". This will position the
slide 500 pixels to the right and a thousand pixels above the previous slide::

    :data-x: r500
    :data-y: r-1000

Relative paths allow you to insert and remove slides and have other slides
adjust automatically. It's generally the most useful way of positioning.


Automatic positioning
---------------------

If you don't specify an attribute, the slide settings
will be the same as the previous slide. This means that if you used
relative positioning, the next slide will move the same distance.

This gives a linear movement, and your slides will end up in a straight line.

By default the movement is 1600 pixels to the right, which means that if you
don't position any slides at all, you get a standard presentation where the
slides will simply slide from right to left.


SVG Paths
---------

Hovercraft! supports positioning slides along an SVG path. This is handy, as
you can create a drawing in a software that supports SVG, and then copy-paste
that drawings path into your presentation.

You specify the SVG path with the ``:hovercraft-path:`` field. For example::

    :hovercraft-path: m275,175 v-150 a150,150 0 0,0 -150,150 z

Every following slide that does not have any explicit positioning will be
placed on this path.

There are some things you need to be careful about when using SVG paths.

Relative and absolute coordinates
.................................

SVG coordinates can either be absolute, with a reference to the page
origin; or relative, which is in reference to the last point. Hovercraft! can
handle both, but what it can not handle very well is a mixture of them.

Specifically, if you take an SVG path that starts with a relative movement
and extract that from the SVG document, you will lose the context. All
coordinates later must then also be relative. If you have an absolute
coordinate you then suddenly regain the context, and everything after the
first absolute coordinate will be misplaced compared to the points that come
before.

Most notable, the open source software "Inkscape" will mix absolute and
relative coordinates, if you allow it to use relative coordinates. You
therefore need to go into it's settings and uncheck the checkbox that allows
you to use relative coordinates. This forces Inkscape to save all coordinates
as absolute, which will work fine.

Start position
..............

By default the start position of the path, and hence the start position of
the first slide, will be whatever the start position would have been if the
slide had no positioning at all. If you want to change this position then
just include ``:data-x:`` or ``:data-y:`` fields. Both relative and absolute
positioning will work here.

In all cases, the first ``m`` or ``M`` command of the SVG path is effectively
ignored, but you have to include it anyway.

SVG transforms
..............

SVG allows you to draw up path and then transform it. Hovercraft! has no
support for these transforms, so before you extract the path you should make
sure the SVG software doesn't use transforms. In Inkscape you can do this by
the "Simplify" command.

Other SVG shapes
................

Hovercraft! doesn't support other SVG shapes, just the path. This is because
organising slides in squares, etc, is quite simple anyway, and the shapes can
be made into paths. Usually in the software you will have to select the shape
and tell your software to make it into a path. In Inkscape, transforming an
object into a path will generally mean that the whole path is made of
CubicBezier curves, which are unnecessarily complex. Using the "Simplify"
command in Inkscape is usually enough to make the shapes into paths.

Shape-scaling
.............

Hovercraft! will scale the path so that all the slides that need to fit into
the path will fit into the path. If you therefore have several paths in your
presentation, they will **not** keep their relative sizes, but will be
resized so the slides fit. If you need to have the shapes keep their relative
sizes, you need to combine them into one path.

Examples
--------

To see how to use Hovercraft! in practice, there are three example presentations
included with Hovercraft!

    hovercraft.rst_
        The demo presentation you can see at http://regebro.github.com/hovercraft

    tutorial.rst_
        A step by step guide to the features of Hovercraft!

    positions.rst_
        An explanation of how to use the positioning features.


.. _documentation: http://docutils.sourceforge.net/docs/index.html
.. _parameters: http://docutils.sourceforge.net/docs/ref/rst/directives.html#images
.. _book: http://python3porting.com/
.. _Pygments: http://pygments.org/
.. _languages: http://pygments.org/docs/lexers/
.. _hovercraft.rst: ./examples/hovercraft.rst
.. _tutorial.rst: ./examples/tutorial.rst
.. _positions.rst: ./examples/positions.rst
.. _Reveal.js: http://lab.hakim.se/reveal-js/
.. _MathJax: http://www.mathjax.org/
.. _custom docutils directive: http://docutils.sourceforge.net/docs/howto/rst-directives.html
.. _Pelican's custom code block: http://docs.getpelican.com/en/3.6.3/content.html#syntax-highlighting