landslide icon indicating copy to clipboard operation
landslide copied to clipboard

Feature request: Add footnote support to slides

Open DDevine opened this issue 11 years ago • 2 comments

I'd like to be able to have footnotes on my slides. rST has a footer directive that could be used to put things at the bottom of a slide.

DDevine avatar Oct 08 '13 12:10 DDevine

Here's a custom Javascript stolen from another landslide presentation

function r(f){/loaded|complete/.test(document.readyState)?f():setTimeout("r("+f+")",9);}
function go() {
    var body = document.getElementsByTagName('body')[0];
    var e = document.createElement('p');
    e.setAttribute('class', 'cop');
    e.innerHTML =
    '<strong>Intégration continue d\'un projet Django</strong> | '
    + 'Nicolas Perriault — <a href="http://www.akei.com/">Akei</a> | '
    + '<a href="http://rencontres.django-fr.org/">Rencontres Django Francophones</a>, Marseille, 2011 | '
    + 'Slides powered by <a href="https://github.com/n1k0/landslide">Landslide</a> (type <code>h</code> fort help)';
    body.appendChild(e);
}
r(go);

You only have to use a landslide.cfg and add a js item pointing to the code.

obestwalter avatar Mar 16 '16 20:03 obestwalter

As an extension: I'd like to have a macro to put credits in a footnote (bar at the bottom of the page or similar). Background: A presentation presented the achievements of other developers. But the credits got lost (end of the presentation cut away in the video). People got angry... having a way to give the credits right where the project is mentioned would have solved that.

Thorsten-Sick avatar Jun 16 '19 14:06 Thorsten-Sick