From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Stewart Subject: exporting to beamer error: "org-beamer--normalize-argument: Wrong type argument: stringp, nil" Date: Wed, 2 Oct 2013 23:36:26 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43265) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRV8I-0001RO-59 for emacs-orgmode@gnu.org; Wed, 02 Oct 2013 18:43:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VRV8H-0004s3-4K for emacs-orgmode@gnu.org; Wed, 02 Oct 2013 18:43:02 -0400 Received: from mail-pb0-x229.google.com ([2607:f8b0:400e:c01::229]:40230) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRV2G-0003TE-Ap for emacs-orgmode@gnu.org; Wed, 02 Oct 2013 18:36:48 -0400 Received: by mail-pb0-f41.google.com with SMTP id rp2so1555148pbb.28 for ; Wed, 02 Oct 2013 15:36:46 -0700 (PDT) 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I have followed this tutorial to export from org to beamer frames. http://orgmode.org/worg/exporters/beamer/ox-beamer.html . Unfortunately, the frames are not created for 2nd level headings. Instead, subsections are used. I am using org-mode from the git repository, pulled today using commit f871fb6 . I have tried both org-export-to-pdf and org-beamer-export-to-pdf . The first is not effective (LaTeX output below). The latter throws an error "org-beamer--normalize-argument: Wrong type argument: stringp, nil" . %% ORG FILE % #+TITLE: Example Presentation #+AUTHOR: Joe Bloggs #+LATEX_CLASS: beamer #+LATEX_CLASS_OPTIONS: [presentation] #+BEAMER_THEME: Madrid #+OPTIONS: H:2 * First Section ** Frame 1 ** Frame 2 %%% STEP 2: M-x org-export-to-pdf %% GENERATES %% % Created 2013-10-02 Wed 23:24 \documentclass[presentation]{beamer} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{fixltx2e} \usepackage{graphicx} \usepackage{longtable} \usepackage{float} \usepackage{wrapfig} \usepackage{rotating} \usepackage[normalem]{ulem} \usepackage{amsmath} \usepackage{textcomp} \usepackage{marvosym} \usepackage{wasysym} \usepackage{amssymb} \usepackage{hyperref} \tolerance=1000 \author{Joe Bloggs} \date{\today} \title{Example Presentation} \hypersetup{ pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 24.3.1 (Org mode 8.2.1)}} \begin{document} \maketitle \tableofcontents \section{First Section} \label{sec-1} \subsection{Frame 1} \label{sec-1-1} \subsection{Frame 2} \label{sec-1-2} % Emacs 24.3.1 (Org mode 8.2.1) \end{document} %%%