From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: Re: latex export for 4th-level heading Date: Thu, 10 Jul 2014 17:13:38 -0400 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5LfW-0005Bn-TO for emacs-orgmode@gnu.org; Thu, 10 Jul 2014 17:14:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X5LfN-0004fb-SK for emacs-orgmode@gnu.org; Thu, 10 Jul 2014 17:14:18 -0400 Received: from mail-qc0-x22a.google.com ([2607:f8b0:400d:c01::22a]:58935) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5LfN-0004fX-OA for emacs-orgmode@gnu.org; Thu, 10 Jul 2014 17:14:09 -0400 Received: by mail-qc0-f170.google.com with SMTP id c9so179608qcz.29 for ; Thu, 10 Jul 2014 14:14:09 -0700 (PDT) In-reply-to: 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: "Thomas S. Dye" Cc: emacs-orgmode * On 2014-07-10 at 17:08, Thomas S. Dye wrote: > Aloha Ken, > > Ken Mankoff writes: > >> When exporting to LaTeX, fourth-level headings become \enumerate. In >> LaTeX, the item below \subsubsection is \paragraph, not \enumerate. >> >> Here is what happens: >> >> * Top becomes \section >> ** Second becomes \subsection >> *** Third becomes \subsubsection >> **** Fourth becomes \enumerate >> >> Is there a way to set Fourth to either \paragraph or just nothing? > > Only the first three outline levels will be used as headings. Deeper > levels will become itemized lists. You can change the location of this > switch globally by setting the variable org-export-headline-levels, or > on a per-file basis with a line > > #+OPTIONS: H:4 > Thanks. That makes sense. I thought that was just for controlling the TOC depth, but it makes sense it controls content headings too. -k.