https://github.com/myterminal/meta-presenter
A simple multi-file presentation tool for Emacs
https://github.com/myterminal/meta-presenter
emacs presentation slideshow
Last synced: 4 months ago
JSON representation
A simple multi-file presentation tool for Emacs
- Host: GitHub
- URL: https://github.com/myterminal/meta-presenter
- Owner: myTerminal
- License: gpl-3.0
- Created: 2014-12-22T18:23:34.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-07-14T16:58:17.000Z (almost 5 years ago)
- Last Synced: 2025-04-15T12:44:04.456Z (about 1 year ago)
- Topics: emacs, presentation, slideshow
- Language: Emacs Lisp
- Homepage:
- Size: 90.8 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meta-presenter
[](http://stable.melpa.org/#/meta-presenter)
[](http://melpa.org/#/meta-presenter)
[](https://marmalade-repo.org/packages/meta-presenter)
[](https://www.gnu.org/licenses/gpl.html)
A simple multi-file presentation tool for Emacs

## Installation
### Manual
Save the file *meta-presenter.el* to disk and add the directory containing it to 'load-path' using a command in your '.emacs' file like:
(add-to-list 'load-path "~/.emacs.d/")
The above line assumes that you've placed the file into the Emacs directory '.emacs.d'.
Start the package with:
(require 'meta-presenter)
### MELPA-Stable / MELPA / Marmalade
If you have MELPA-Stable, MELPA or Marmalade added as a repository to your Emacs, you can just install *meta-presenter* with
M-x package-install meta-presenter RET
## Usage
Create a directory that contains slides to be presented stored as files. Name the files as the slide number followed by an underscore, followed by the name of the slide. Below are some examples:
* 1_introduction.md
* 2_getting-started.md
* 3_advanced-features.md
Create a separate title slide for the presentation, start the presentation mode while viewing the file. For example, if the directory containing your slides contains a *title.md* file, you can run `meta-presenter-start-presentation` while having the file open in the buffer where you would like the presentation to start. When the presentation starts, you'll be taken to a buffer named *slide-show.md*.
In order to move to the next slide press `C-c C-v`, to move back to the previous slide press `C-c C-x`.
As the slides are not read-only, you could perform annotations on them. To revert the changes press `C-c C-c`.
You can also enable animations for slide transitions which is currently experimental and not optimized. To enable animations, just evaluate the below line.
(setq meta-presenter-enable-animations t)