Notes for emacs users
If you use emacs, I would highly recommend installing the emacs scripts
from www.neilvandyke.org. Not as powerful as
AUCTeX, but still very cool!
Some more staff in .emacs, if you wish:
(add-outline 'scribble-mode-hook) |
(add-hook 'scribble-mode-hook '(lambda () (setq outline-regexp "@section\\|@subsection\\|@subsubsection\\|@slide"))) |
(defface scribble-slide-face |
'((((class color) (background dark)) (:inherit variable-pitch :family "Terminus" :foreground "khaki2" :weight bold :height 1.2))) |
"Basic face for highlighting the scribble slide title.") |
(add-hook 'scribble-mode-hook '(lambda () (font-lock-add-keywords 'scribble-mode |
'(("@slide\\[\"\\(.*?\\)\".*\\]" 1 'scribble-slide-face prepend) |
("@slide\\[@elem{\\(.*?\\)}.*\\]" 1 'scribble-slide-face prepend) |
("@\\(after-pause\\)" 1 'font-lock-warning-face prepend) |
("@\\(slide\\)" 1 'font-lock-warning-face prepend))))) |
—