public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* LaTeX enumerate
@ 2012-04-09 19:34 Dirk Laurie
       [not found] ` <CABcj=t=8fmTu7B6goaxhUNzo2TC5vnKP-OA4G72EmU17=8=c9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Dirk Laurie @ 2012-04-09 19:34 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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?


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: LaTeX enumerate
       [not found] ` <CABcj=t=8fmTu7B6goaxhUNzo2TC5vnKP-OA4G72EmU17=8=c9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2012-04-09 23:30   ` John MacFarlane
       [not found]     ` <20120409233047.GC24766-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
  2012-08-06  9:38   ` Simon W. Jones
  1 sibling, 1 reply; 4+ messages in thread
From: John MacFarlane @ 2012-04-09 23:30 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

\usepackage{enumerate}

+++ Dirk Laurie [Apr 09 12 21:34 ]:
> 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?
> 
> -- 
> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
> To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To unsubscribe from this group, send email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> For more options, visit this group at http://groups.google.com/group/pandoc-discuss?hl=en.
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: LaTeX enumerate
       [not found] ` <CABcj=t=8fmTu7B6goaxhUNzo2TC5vnKP-OA4G72EmU17=8=c9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2012-04-09 23:30   ` John MacFarlane
@ 2012-08-06  9:38   ` Simon W. Jones
  1 sibling, 0 replies; 4+ messages in thread
From: Simon W. Jones @ 2012-08-06  9:38 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

[-- Attachment #1: Type: text/plain, Size: 1327 bytes --]

I'm finding exactly the same thing with a simple ordered list:

*
*
*1. Item 1*
*2. Item 2*
*3. Item 3*

becomes:

*\begin{enumerate}[1.]*
*\item*
*  Item 1*
*\item*
*  Item 2*
*\item*
*  Item 3*
*\end{enumerate}*
*
*
PDF output is fine but it won't compile in latex with out be removing the 
[1.]

Pandoc is a great program (thank you very much Mr. MacFarlane) and a fix 
for this would be very welcome. 


On Monday, April 9, 2012 8:34:33 PM UTC+1, Dirk wrote:
>
> 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?
>
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msg/pandoc-discuss/-/SeyTNZB-QWUJ.
For more options, visit https://groups.google.com/groups/opt_out.



[-- Attachment #2: Type: text/html, Size: 2044 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: LaTeX enumerate
       [not found]     ` <20120409233047.GC24766-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
@ 2012-08-06  9:42       ` Simon W. Jones
  0 siblings, 0 replies; 4+ messages in thread
From: Simon W. Jones @ 2012-08-06  9:42 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

[-- Attachment #1: Type: text/plain, Size: 1159 bytes --]

Sorry, I realise that Fiddlospher was letting me know I should 
use \usepackage{enumerate}!!!

On Tuesday, April 10, 2012 12:30:48 AM UTC+1, fiddlosopher wrote:
>
> \usepackage{enumerate}
>
> +++ Dirk Laurie [Apr 09 12 21:34 ]:
> > 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?
> > 
> > -- 
>
> > 
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msg/pandoc-discuss/-/zpPsAWJd9jsJ.
For more options, visit https://groups.google.com/groups/opt_out.



[-- Attachment #2: Type: text/html, Size: 1603 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-08-06  9:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-09 19:34 LaTeX enumerate Dirk Laurie
     [not found] ` <CABcj=t=8fmTu7B6goaxhUNzo2TC5vnKP-OA4G72EmU17=8=c9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-04-09 23:30   ` John MacFarlane
     [not found]     ` <20120409233047.GC24766-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2012-08-06  9:42       ` Simon W. Jones
2012-08-06  9:38   ` Simon W. Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).