emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] LaTeX export of lists


From: Thomas S. Dye
Subject: Re: [Orgmode] LaTeX export of lists
Date: Sun, 28 Nov 2010 08:40:58 -1000

Aloha Nicolas,
On Nov 28, 2010, at 5:05 AM, Nicolas Goaziou wrote:

Hello,

Thomas S Dye writes:

* List
 1. First item
 2. Second item Following text.

This is completely different from your first example. Here "Following
text" is inside the list, whereas before, it was outside.

This works for lists set in a paragraph, but won't work for lists
set out by themselves. Richard's \noindent will work in these
situations, but I'm wondering why the empty line is there in the
first place?

I don't know, I am going to investigate this.

Thanks for looking into this. The desired org-mode example and exported result is this:

* List
  1. First item
  2. Second item
Following text

\section{List}
\label{sec-1}

\begin{enumerate}
\item First item
\item Second item
\end{enumerate}
Following text

This way, the decision to typeset the list in-paragraph or displayed with following non-indented text can be made by the LaTeX class file.

This means that

* List
  1. First item
  2. Second item

Following text

should export as:

\section{List}
\label{sec-1}

\begin{enumerate}
\item First item
\item Second item
\end{enumerate}

Following text

All the best,
Tom



reply via email to

[Prev in Thread] Current Thread [Next in Thread]