From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: Re: Nested ordered (numbered) lists Date: Sat, 25 Jun 2016 17:47:04 -0400 Message-ID: <20160625214704.kk5xsvwny3is3nbj@eyeBook.home> References: <1466883275.15503.3.camel@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50497) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bGvQZ-0007Wo-K8 for emacs-orgmode@gnu.org; Sat, 25 Jun 2016 17:47:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bGvQV-0003NW-Vv for emacs-orgmode@gnu.org; Sat, 25 Jun 2016 17:47:47 -0400 Received: from mail.cybercode.nyc ([45.55.183.129]:36296) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bGvQU-0003NK-NM for emacs-orgmode@gnu.org; Sat, 25 Jun 2016 17:47:43 -0400 Received: from authenticated-user (mail.cybercode.nyc [45.55.183.129]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.cybercode.nyc (Postfix) with ESMTPSA id B6955140154 for ; Sat, 25 Jun 2016 17:47:03 -0400 (EDT) Content-Disposition: inline In-Reply-To: <1466883275.15503.3.camel@gmail.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" To: emacs-orgmode@gnu.org On Sat, Jun 25, 2016 at 10:34:35PM +0300, ST wrote: > Hi, > > is there a way to produce nested ordered (numbered) lists and get it > exported (to pdf/html) properly? Like: > > 1. item_1 > 2. item_2 > 2.1. subitem_2_1 > 2.1.1. subsubitem_2_1_1 > 2.2. subitem_2_2 > 3. item_3 have you tried: # #+LATEX_HEADER_EXTRA: \usepackage{enumitem} \setlist[enumerate]{label*=\arabic*.} * Numbered lists 1. item_1 2. item_2 1. subitem_2_1 1. subsubitem_2_1_1 2. subitem_2_2 3. item_3 rick