From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gabor Retvari Subject: Beamer export: can't get frame level right Date: Sat, 12 Jul 2014 14:50:12 +0200 Message-ID: <4141300.04dEsLQeik@weber.tmit.bme.hu> 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]:51318) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5wl8-0004qy-LE for emacs-orgmode@gnu.org; Sat, 12 Jul 2014 08:50:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X5wkz-0004Hx-RM for emacs-orgmode@gnu.org; Sat, 12 Jul 2014 08:50:34 -0400 Received: from anubis.tmit.bme.hu ([152.66.245.198]:52220) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5wkz-0004Fn-Jq for emacs-orgmode@gnu.org; Sat, 12 Jul 2014 08:50:25 -0400 Received: from localhost (localhost [127.0.0.1]) by anubis.tmit.bme.hu (Postfix) with ESMTP id 9A8784999D for ; Sat, 12 Jul 2014 14:50:22 +0200 (CEST) Received: from anubis.tmit.bme.hu ([127.0.0.1]) by localhost (anubis.tmit.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HvoEYxF-usHd for ; Sat, 12 Jul 2014 14:50:21 +0200 (CEST) Received: from anyo.tmit.bme.hu (anyo.tmit.bme.hu [152.66.246.7]) by anubis.tmit.bme.hu (Postfix) with ESMTP id 49D8849996 for ; Sat, 12 Jul 2014 14:50:20 +0200 (CEST) Received: from weber.tmit.bme.hu (254C0D15.nat.pool.telekom.hu [37.76.13.21]) (authenticated bits=0) by anyo.tmit.bme.hu (8.14.3/8.14.3/Debian-5+lenny1) with ESMTP id s6CCoKnY031699 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sat, 12 Jul 2014 14:50:23 +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 guess this should be easy but I just can't get frame levels right in my beamer exports. So as far as I understand, this should get my first level headlines (`* headline 1' and stuff) into separate frames in my beamer export. === ORG MODE TEXT: === #+LaTeX_CLASS: beamer #+LaTeX_CLASS_OPTIONS: [presentation,bigger] #+OPTIONS: H:1 * headline 1 - stuff - stuff too * headline 2 - list 1 - list 2 - ... * headline 3 - no stuff I expected the headlines top level headlines (`* headline 1'...) to appear inside separate `\begin{frame}...\end{frame}' environments. Problem is that they do not, intead every headline goes into LaTeX `\section' sections. === LATEX EXPORT: === \documentclass[presentation,bigger]{beamer} [..] \section{headline 1} \label{sec-1} \begin{itemize} \item stuff \item stuff too \end{itemize} \section{headline 2} \label{sec-2} \begin{itemize} \item list 1 \item list 2 \item \ldots{} \end{itemize} \section{headline 3} \label{sec-3} \begin{itemize} \item no stuff \end{itemize} % Emacs 24.3.1 (Org mode 8.2.7b) \end{document} No `OPTIONS: H:n' setting seems to solve this problem. So how do I get this right? This is Org mode 8.2.7b by the way, as of the `org-mode' package version 8.2.7b-1 in Debian testing. Thanks a lot, Gabor