From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Ziegenhagen Subject: Exporting to LaTeX Beamer Date: Fri, 25 Apr 2014 04:38:49 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50163) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WdXup-00071Z-12 for emacs-orgmode@gnu.org; Fri, 25 Apr 2014 00:39:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WdXuj-00083y-MT for emacs-orgmode@gnu.org; Fri, 25 Apr 2014 00:39:10 -0400 Received: from plane.gmane.org ([80.91.229.3]:60196) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WdXuj-00083n-FW for emacs-orgmode@gnu.org; Fri, 25 Apr 2014 00:39:05 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WdXue-00036I-Qj for emacs-orgmode@gnu.org; Fri, 25 Apr 2014 06:39:00 +0200 Received: from p57A0BB15.dip0.t-ipconnect.de ([87.160.187.21]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 25 Apr 2014 06:39:00 +0200 Received: from ziegenhagen by p57A0BB15.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 25 Apr 2014 06:39:00 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I am trying to export an org file to individual Beamer frames but fail as Org mode exports the sections, but not the frames. I use the following example org file (as given by http://orgmode.org/worg/exporters/beamer/tutorial.html) ###################################### #+TITLE: Writing Beamer presentations in org-mode #+AUTHOR: Eric S Fraga #+EMAIL: e.fraga@ucl.ac.uk #+DATE: 2010-03-30 Tue #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t #+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc #+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js #+EXPORT_SELECT_TAGS: export #+EXPORT_EXCLUDE_TAGS: noexport #+LINK_UP: #+LINK_HOME: #+startup: beamer #+LaTeX_CLASS: beamer #+LaTeX_CLASS_OPTIONS: [bigger] #+BEAMER_FRAME_LEVEL: 2 #+COLUMNS: %40ITEM %10BEAMER_env(Env) %9BEAMER_envargs(Env Args) %4BEAMER_col(Col) %10BEAMER_extra(Extra) * Introduction ** A simple slide This slide consists of some text with a number of bullet points: - the first, very @important@, point! - the previous point shows the use of the special markup which translates to the Beamer specific /alert/ command for highlighting text. The above list could be numbered or any other type of list and may include sub-lists. ################################################ and get the following result, where ** is translated into subsection. ################################################ % Created 2014-04-25 Fr 06:36 \documentclass[bigger]{beamer} \usepackage[latin1]{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{Eric S Fraga} \date{2010-03-30 Tue} \title{Writing Beamer presentations in org-mode} \hypersetup{ pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 24.3.1 (Org mode 8.2.6)}} \begin{document} \maketitle \tableofcontents \section{Introduction} \label{sec-1} \subsection{A simple slide} \label{sec-1-1} This slide consists of some text with a number of bullet points: \begin{itemize} \item the first, very @important@, point! \item the previous point shows the use of the special markup which translates to the Beamer specific \emph{alert} command for highlighting text. \end{itemize} The above list could be numbered or any other type of list and may include sub-lists. % Emacs 24.3.1 (Org mode 8.2.6) \end{document} ###################### What is needed to fix this? Uwe