From mboxrd@z Thu Jan 1 00:00:00 1970 From: bvraghav@iitk.ac.in (B.V. Raghav) Subject: Re: Symbol's function definition is void: org-beamer-insert-options-template Date: Fri, 10 Jun 2016 19:17:15 +0530 Message-ID: <87porpf95o.fsf@ram.bvr.dp.lan> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34711) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBMmj-0007RZ-7k for emacs-orgmode@gnu.org; Fri, 10 Jun 2016 09:47:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bBMmd-0003jy-9W for emacs-orgmode@gnu.org; Fri, 10 Jun 2016 09:47:40 -0400 Received: from mail3.iitk.ac.in ([202.3.77.190]:48829) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBMmc-0003hz-P8 for emacs-orgmode@gnu.org; Fri, 10 Jun 2016 09:47:35 -0400 In-Reply-To: (Giacomo M.'s message of "Fri, 10 Jun 2016 14:46:11 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Giacomo M Cc: "emacs-orgmode@gnu.org" Giacomo M 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)