From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: LaTeX export bug (skipping outline levels) Date: Wed, 30 Sep 2009 08:04:10 -0600 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mszn2-00021p-AL for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 10:04:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mszmx-0001yX-OC for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 10:04:19 -0400 Received: from [199.232.76.173] (port=50487 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mszmx-0001yH-IH for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 10:04:15 -0400 Received: from mail-px0-f202.google.com ([209.85.216.202]:63294) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mszmx-0007yo-19 for emacs-orgmode@gnu.org; Wed, 30 Sep 2009 10:04:15 -0400 Received: by pxi40 with SMTP id 40so7440016pxi.24 for ; Wed, 30 Sep 2009 07:04:14 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode --=-=-= Hi, I've noticed that when exporting to LaTeX Org-mode will skip levels that are two deeper than their immediate parent level. See the attached example where the "*** third level" headline is not exported to LaTeX. --=-=-= Content-Type: application/octet-stream Content-Disposition: attachment; filename=simple.org #+TITLE: LaTeX issue #+OPTIONS: num:nil ^:nil * top level *** third level There is content here which will not be exported to LaTeX * another top level ** second level *** nested third level because of the second level above I will be exported to LaTeX --=-=-= I'll also attach the resulting .tex file --=-=-= Content-Type: application/x-tex; charset=utf-8 Content-Disposition: attachment; filename=simple.tex % Created 2009-09-30 Wed 08:03 \documentclass[11pt]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{graphicx} \usepackage{longtable} \usepackage{soul} \usepackage{hyperref} \usepackage{color} \usepackage{listings} \title{LaTeX issue} \author{Eric Schulte} \date{30 September 2009} \begin{document} \maketitle \section*{top level} \label{sec-1} \section*{another top level} \label{sec-2} \subsection*{second level} \label{sec-2.1} \subsubsection*{nested third level} \label{sec-2.1.1} because of the second level above I will be exported to \LaTeX{} \end{document} --=-=-= This is using the latest version of Org-mode. Thanks -- Eric --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--