[O] enumerate in LaTeX export

2014-05-05 Thread Roger Mason
Hello,

I don't understand why this text:

===
case. The University requests that all medical notes be on letterhead,
be signed by the physician and include details on the following:

  1.  confirmation of the specific dates on which the student visited
  the physician.
  2.  the degree to which the illness (or treatment, in the case of
  medication, for example) is likely to have affected the student's
  ability to study, attend classes, or sit examination.
==

Results in this LaTeX output:

==
\begin{enumerate}
\item confirmation of the specific dates on which the student visited
\end{enumerate}
the physician.
\begin{enumerate}
\item the degree to which the illness (or treatment, in the case of
\end{enumerate}
medication, for example) is likely to have affected the student's
ability to study, attend classes, or sit examination.
\begin{enumerate}
==

I'm running release_8.2.6-937-g60502a in GNU Emacs 24.3.1
(amd64-portbld-freebsd10.0, GTK+ Version 2.24.22).

Thanks for any help.

Roger



Re: [O] enumerate in LaTeX export

2014-05-05 Thread Eric S Fraga
On Monday,  5 May 2014 at 15:33, Roger Mason wrote:
 Hello,

 I don't understand why this text:

 ===
 case. The University requests that all medical notes be on letterhead,
 be signed by the physician and include details on the following:

   1.  confirmation of the specific dates on which the student visited
   the physician.

Continuation lines of a list item need to be indented so you should
have:

   1.  confirmation of the specific dates on which the student visited
   the physician.
   2.  the degree to which the illness (or treatment, in the case of
   medication, for example) is likely to have affected the student's
   ability to study, attend classes, or sit examination.

for instance.
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.4.50.2, Org release_8.2.6-923-g233c11



Re: [O] enumerate in LaTeX export

2014-05-05 Thread Grant Rettke
Thanks for sharing that. I've been letting long-lines wrap so that
they are exported correctly. Not the worst solution what you describe
is nicer.
Grant Rettke | AAAS, ACM, ASA, FSF, IEEE, SIAM, Sigma Xi
gret...@acm.org | http://www.wisdomandwonder.com/
“Wisdom begins in wonder.” --Socrates
((λ (x) (x x)) (λ (x) (x x)))
“Life has become immeasurably better since I have been forced to stop
taking it seriously.” --Thompson


On Mon, May 5, 2014 at 1:23 PM, Eric S Fraga e.fr...@ucl.ac.uk wrote:
 On Monday,  5 May 2014 at 15:33, Roger Mason wrote:
 Hello,

 I don't understand why this text:

 ===
 case. The University requests that all medical notes be on letterhead,
 be signed by the physician and include details on the following:

   1.  confirmation of the specific dates on which the student visited
   the physician.

 Continuation lines of a list item need to be indented so you should
 have:

1.  confirmation of the specific dates on which the student visited
the physician.
2.  the degree to which the illness (or treatment, in the case of
medication, for example) is likely to have affected the student's
ability to study, attend classes, or sit examination.

 for instance.
 --
 : Eric S Fraga (0xFFFCF67D), Emacs 24.4.50.2, Org release_8.2.6-923-g233c11




Re: [O] enumerate in LaTeX export

2014-05-05 Thread Roger Mason
Many thanks, Eric.  That did indeed fix the problem.

Roger