From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pedro Silva Subject: sectioning depth limit on export Date: Thu, 12 Apr 2012 20:20:56 +0100 Message-ID: <87hawosqnb.fsf@pedrosilva.pt> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:37841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIPZz-00056D-Je for emacs-orgmode@gnu.org; Thu, 12 Apr 2012 15:21:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SIPZx-00038Q-L6 for emacs-orgmode@gnu.org; Thu, 12 Apr 2012 15:21:15 -0400 Received: from li274-209.members.linode.com ([178.79.155.209]:46267 helo=pedrosilva.pt) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIPZx-00037b-6P for emacs-orgmode@gnu.org; Thu, 12 Apr 2012 15:21:13 -0400 Received: from 197.28.166.178.rev.vodafone.pt ([178.166.28.197] helo=t61-arch) by pedrosilva.pt with esmtpsa (UNKNOWN:AES128-SHA:128) (Exim 4.77) (envelope-from ) id 1SIPZp-0001dn-IG for emacs-orgmode@gnu.org; Thu, 12 Apr 2012 15:21:05 -0400 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 I'm having problems over a document with headings down to a depth of 5 export the levels 4 and 5 as \paragraph and \subparagraph, respectively. My org-export-latex-classes includes the following: ("article" "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) My source document includes the following: #+LaTeX_CLASS: article, my org-export-latex-class is "article", and my org-export-latex-sectioning-depth is locally set to 6 (default is 3). According to the "More Highly-Structured Documents" subsection of "Latex Export" worg tutorial This setup should produce the following document structure, when exported to LaTeX: * section ** subsection *** subsubsection **** paragraph ***** subparagraph However, this is what is produced: * section ** subsection *** subsubsection **** itemize ***** sub-itemize, etc This happens with all export types I've tried, namely LaTeX, HTML, and plain text. Any ideas about how to force export of 4 and 5-level deep headings as paragraph and subparagraph headings in LaTeX? -- Pedro