From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Elston Subject: Sectioning in LaTeX export Date: Tue, 07 Apr 2009 18:52:09 -0700 Message-ID: <49DC0349.4040906@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LrMxq-0003Bx-KY for emacs-orgmode@gnu.org; Tue, 07 Apr 2009 21:52:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LrMxp-0003Bi-4B for emacs-orgmode@gnu.org; Tue, 07 Apr 2009 21:52:30 -0400 Received: from [199.232.76.173] (port=57259 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LrMxp-0003Bf-1u for emacs-orgmode@gnu.org; Tue, 07 Apr 2009 21:52:29 -0400 Received: from qmta10.westchester.pa.mail.comcast.net ([76.96.62.17]:39655) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LrMxo-00085w-Nh for emacs-orgmode@gnu.org; Tue, 07 Apr 2009 21:52:28 -0400 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 List I have an org file I use specifically for exporting a collection of other org files to pdf (using LaTeX). However, the resulting output is not very much like I would like it to be. I am using the book class for now but will likely add my own LaTeX_CLASS entry later once I get this all figured out. Ideally, each included file should form its own chapter. Within that chapter each level 1 heading would be a section, level 2 headings would be subsections, etc. I cannot get this to happen. Every level 1 heading is always an itemize item and level 2 and below just show up as "** " lines. Currently, at the top of my top-level org file I have the following: #+TITLE: My Tasks #+OPTIONS: H:4 num:t d:t #+LaTeX_CLASS: book The title and class seem to work but the options line seems to be ignored. How can I enforce some structure to my resulting latex code? Mark