From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.text.pandoc/3477 Path: news.gmane.org!not-for-mail From: Dirk Laurie Newsgroups: gmane.text.pandoc Subject: LaTeX enumerate Date: Mon, 9 Apr 2012 21:34:33 +0200 Message-ID: Reply-To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1334000092 24434 80.91.229.3 (9 Apr 2012 19:34:52 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 9 Apr 2012 19:34:52 +0000 (UTC) To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Original-X-From: pandoc-discuss+bncCK2lqf-1AhDK84z8BBoEJIQYjA-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Mon Apr 09 21:34:52 2012 Return-path: Envelope-to: gtp-pandoc-discuss@m.gmane.org Original-Received: from mail-vb0-f58.google.com ([209.85.212.58]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SHKMV-00006D-SG for gtp-pandoc-discuss@m.gmane.org; Mon, 09 Apr 2012 21:34:52 +0200 Original-Received: by vbal1 with SMTP id l1sf4304660vba.3 for ; Mon, 09 Apr 2012 12:34:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlegroups.com; s=beta; h=x-beenthere:received-spf:mime-version:date:message-id:subject:from :to:x-original-sender:x-original-authentication-results:reply-to :precedence:mailing-list:list-id:x-google-group-id:list-post :list-help:list-archive:sender:list-subscribe:list-unsubscribe :content-type; bh=DSOEJMxq7Y0k+MKTiEMEWQx/iLAaU/VeiDvKTaT+SiU=; b=mdh/vUTUzuceGbpSYKh/JqtebDyTkJad6Yd++5lpODPP3B8ioUWEW0o5jC6WavpypA HY6Alm5H1ENWfPmuoJIIHLpB2CgpEJ26ynv7uq5i6AywO+0Pc8HUciyohWSF/x0671pL ONUdgrXIbbkG6CfVlx2D05vK26RCkLH43zdZI= Original-Received: by 10.50.47.163 with SMTP id e3mr172061ign.6.1334000074186; Mon, 09 Apr 2012 12:34:34 -0700 (PDT) X-BeenThere: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Original-Received: by 10.50.151.199 with SMTP id us7ls1858522igb.1.canary; Mon, 09 Apr 2012 12:34:33 -0700 (PDT) Original-Received: by 10.50.6.167 with SMTP id c7mr297587iga.1.1334000073611; Mon, 09 Apr 2012 12:34:33 -0700 (PDT) Original-Received: by 10.50.6.167 with SMTP id c7mr297584iga.1.1334000073595; Mon, 09 Apr 2012 12:34:33 -0700 (PDT) Original-Received: from mail-ob0-f177.google.com (mail-ob0-f177.google.com [209.85.214.177]) by gmr-mx.google.com with ESMTPS id ko2si7818069igc.2.2012.04.09.12.34.33 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 09 Apr 2012 12:34:33 -0700 (PDT) Received-SPF: pass (google.com: domain of dirk.laurie-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org designates 209.85.214.177 as permitted sender) client-ip=209.85.214.177; Original-Received: by obhx4 with SMTP id x4so7265363obh.36 for ; Mon, 09 Apr 2012 12:34:33 -0700 (PDT) Original-Received: by 10.60.10.137 with SMTP id i9mr12755177oeb.23.1334000073224; Mon, 09 Apr 2012 12:34:33 -0700 (PDT) Original-Received: by 10.182.47.68 with HTTP; Mon, 9 Apr 2012 12:34:33 -0700 (PDT) X-Original-Sender: dirk.laurie-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org X-Original-Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of dirk.laurie-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org designates 209.85.214.177 as permitted sender) smtp.mail=dirk.laurie-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org; dkim=pass header.i=@gmail.com Precedence: list Mailing-list: list pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org; contact pandoc-discuss+owners-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org List-ID: X-Google-Group-Id: 1007024079513 List-Post: , List-Help: , List-Archive: Original-Sender: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org List-Subscribe: , List-Unsubscribe: , Xref: news.gmane.org gmane.text.pandoc:3477 Archived-At: Pandoc translates this: ~~~~ 1. abc 2. def ~~~~ to this: ~~~~ \begin{enumerate}[1.] \item abc \item def \end{enumerate} ~~~~ LaTeX does not like it, and I cannot find that [1.] documented anywhere. But converting to PDF works. Is this some extension defined by a package loaded in the default template file?