Presentation/Slideshow in GNU Emacs
If you have xwidget webkit support in Emacs, you can run reveal.js presentation / slideshow within Emacs. RevealJs uses HTML. Hence you can make your presentation as fancy as you'd like with CSS and JS. Hopefully, this will save you from learning one more piece of software.
The screenshot shows maximized mode. However, you should preferably run in fullscreen mode. You might want to get rid of redundant screen elements using the prez-mode function below.
(defun prez-mode ()
(interactive)
(delete-other-windows)
(setq mode-line-format nil
header-line-format nil)
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(toggle-frame-fullscreen))
(interactive)
(delete-other-windows)
(setq mode-line-format nil
header-line-format nil)
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(toggle-frame-fullscreen))
Comments
Post a Comment