diff --git a/applicationConfiguration/.emacs/jlj-init.org b/applicationConfiguration/.emacs/jlj-init.org index e5d206a..ed944d5 100644 --- a/applicationConfiguration/.emacs/jlj-init.org +++ b/applicationConfiguration/.emacs/jlj-init.org @@ -366,6 +366,27 @@ the only thing that isn't pretty much stock is #+RESULTS: | jlj-desktop-save | +* presentations +The idea here is to use reveal.js and org-mode to present stuff +- reveal.js is required +- htmlize.el (for syntax highlighting) +- obvs, ox-reveal.el package. + +You can either use a CDN to deliver the reveal.js, or you can download source. Both examples are given here: + ~(setq org-reveal-root "file:///~/Documents/projects/agares/applicationConfiguration/.emacs/src/reveal.js-3.8.0"))~ + ~(setq org-reveal-root "http://cdn.jsdelivr.net/reveal.js/3.0.0/"))~ +#+BEGIN_SRC emacs-lisp +(setq org-reveal-root "http://cdn.jsdelivr.net/reveal.js/3.0.0/") +(setq org-reveal-mathjax t) + +(use-package ox-reveal + :ensure t) + + +#+END_SRC + +#+RESULTS: + * misc #+BEGIN_SRC elisp