From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Numbering specific headings only Date: Wed, 05 Apr 2017 15:35:45 +0200 Message-ID: <87bmsbt1se.fsf@gmx.us> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cvl6d-00054K-Fc for emacs-orgmode@gnu.org; Wed, 05 Apr 2017 09:36:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cvl6c-000654-QP for emacs-orgmode@gnu.org; Wed, 05 Apr 2017 09:36:15 -0400 Received: from [195.159.176.226] (port=37604 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cvl6c-00062g-Ku for emacs-orgmode@gnu.org; Wed, 05 Apr 2017 09:36:14 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1cvl6J-0002bn-Oc for emacs-orgmode@gnu.org; Wed, 05 Apr 2017 15:35:55 +0200 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" To: emacs-orgmode@gnu.org Hi, > When I export the document to PDF, all the headings get numbered. I only > want to > have the 3rd level heading numbered (DEFINITIONS, FOOBAR, etc.). I have > got about 50 3rd level headings so far. There may be more, might get > less. I don't want to manually number the headings. Does this solve your problem: #+latex_header: \renewcommand{\thesection}{} #+latex_header: \renewcommand{\thesubsection}{} #+latex_header: \renewcommand{\thesubsubsection}{\arabic{subsubsection}} Depending on your usage, you might have to disable counter reset between sections/subsections. You might be able to use the chngcntr package for that. You might be able to use the Org UNNUMBERED property, though I doubt it. Rasmus -- To err is human. To screw up 10⁶ times per second, you need a computer