Giacomo M <jackja...@gmail.com> writes: > Dear all, > > I would find useful to have a template for beamer presentations. I was > wandering in the menus and under Org -> Latex I found a "Template for > BEAMER", which sounded good for what I was looking for. But if I press > it I get: > > menu-function-46: Symbol's function definition is void: > org-beamer-insert-options-template The same function on a fresh org file in my system inserts the following text at point:
#+LaTeX_CLASS: beamer #+LaTeX_CLASS_OPTIONS: [presentation] #+BEAMER_THEME: default #+COLUMNS: %45ITEM %10BEAMER_env(Env) %10BEAMER_act(Act) %4BEAMER_col(Col) %8BEAMER_opt(Opt) #+PROPERTY: BEAMER_col_ALL 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.0 :ETC > > Any ideas? > I do not know much else, but `C-c C-e # beamer' inserts the following text at point #+OPTIONS: H:1 #+BEAMER_COLOR_THEME: #+BEAMER_FONT_THEME: #+BEAMER_HEADER: #+BEAMER_INNER_THEME: #+BEAMER_OUTER_THEME: #+BEAMER_THEME: default #+LATEX_CLASS: beamer May be it helps to do once with `emacs -Q' + `M-: (add-to-list 'org-export-backends 'beamer)' + `M-: (require 'ox-beamer)' followed by `C-c C-e # beamer' and/or `Menu > Org > LaTex > Template for BEAMER' on a fresh Org file If that helps all you need is to add to `init.el' is: (add-to-list 'org-export-backends 'beamer) (require 'ox-beamer) HTH r -- (B.V. Raghav)