From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Randby Subject: Re: Chapter headings Date: Fri, 28 Mar 2014 16:41:06 -0400 Message-ID: <5335DE62.3080901@gmail.com> References: <87siq284tb.fsf@stevenarntson.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47355) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WTdaV-0000ui-K3 for emacs-orgmode@gnu.org; Fri, 28 Mar 2014 16:41:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WTdaP-0005tz-Jg for emacs-orgmode@gnu.org; Fri, 28 Mar 2014 16:41:15 -0400 Received: from mail-ie0-x22c.google.com ([2607:f8b0:4001:c03::22c]:47043) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WTdaP-0005tX-Dq for emacs-orgmode@gnu.org; Fri, 28 Mar 2014 16:41:09 -0400 Received: by mail-ie0-f172.google.com with SMTP id as1so5514700iec.3 for ; Fri, 28 Mar 2014 13:41:08 -0700 (PDT) Received: from [192.168.1.111] (cpe-24-165-203-246.neo.res.rr.com. [24.165.203.246]) by mx.google.com with ESMTPSA id on9sm7024525igb.11.2014.03.28.13.41.07 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 28 Mar 2014 13:41:07 -0700 (PDT) In-Reply-To: <87siq284tb.fsf@stevenarntson.com> 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 On 03/28/2014 04:08 PM, Steven Arntson wrote: > Hello, I'm a beginning org-mode user. > > I'm writing a book with many chapters, each chapter as a top-level > header (*). Is there a way to assign chapter numbers automatically, such > that I might get a result along the lines of: > > * 1. This is a chapter containing thousands of words. > > * 2. This is the next chapter, with many words. > > * 3. And so on. > > Thank you! > steven arntson > > > Chapter numbers are automatically assigned when you export to LaTeX unless you turn off numbering. You can also control numbering with the following code. #+OPTIONS: num:t #+OPTIONS: num:nil The first line turns on numbering of exported headlines, and the second line turns off numbering of exported headlines. You can then eliminate the numbers in the headlines of your org file. See the following link for more information about export options. http://orgmode.org/manual/Export-settings.html Scott Randby