Presentation mode is a global minor mode to zoom characters. This mode applies the effect of text-scale-mode
to all buffers. This feature help you to present Emacs edit / operation to the audience in front of the screen.
M-x presentation-mode
to start the presentation.C-x C-+
or C-x C--
See https://www.gnu.org/software/emacs/manual/html_node/emacs/Text-Scale.htmlM-x presentation-mode
again.M-x presentation-mode
again, the last scale will be reproduced.presentation-default-text-scale
.It is well known that how to change the font size of Emacs in GUI is difficult. However, this mode is NOT intended for permanent font size change.
You can switch modes for screen decoration by defining hook for on/off.
(defun my-presentation-on () (helm-mode -1) ;; (global-display-line-numbers-mode -1) (ido-ubiquitous-mode 1) (bind-key "M-x" #'smex)) (defun my-presentation-off () (ido-ubiquitous-mode -1) ;; (global-display-line-numbers-mode 1) (helm-mode 1) (bind-key "M-x" #'helm-smex)) (add-hook 'presentation-on-hook #'my-presentation-on) (add-hook 'presentation-off-hook #'my-presentation-off)
Typically it is on/off of display-line-numbers-mode
(or linum-mode
) (although I do not use it). I normally use Helm, but I think that IDO is more compact and easy to see during presentation.
Although the content of this article is simple, it does not provide a way to recover buffers.
moom
package has flexible frame control and font size change function. Its font size change function is controlled by a mechanism different from presentation.el
.
default-text-scale
package is an implementation that replaces text-scale-mode
. This package is probably not compatible with presentation.el
, but please use this whenever you want to synchronize font size at all times, not only for presentation use.
These packages are simple presentations using org-mode. By using these with org-babel, it may be possible to perform live coding of arbitrary languages.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4