From: Thomas Holst <thomas.holst@de.bosch.com>
To: emacs-orgmode@gnu.org
Subject: Bug in export to LaTex: Lists with source code blocks
Date: Tue, 25 Oct 2011 13:32:27 +0200 [thread overview]
Message-ID: <ywodbot5wblg@de.bosch.com> (raw)
Hello,
there is a bug when exporting to LaTeX if there is a source code block
inside a list.
I have a file with the following contents:
#+begin_org
#+TITLE: Lists mit Source-Blocks
#+AUTHOR: thomas.holst@gmx.de
#+EMAIL: Thomas Holst
#+DATE: 25.10.2011
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:{} -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
* A heading
1. First Item
#+begin_src perl
print "First example:\n";
#+end_src
Text in first item.
2. Second Item
#+begin_src perl
print "Second example:\n";
#+end_src
Text in second item.
#+end_org
The exportet LaTeX file contains the following:
#+begin_src latex
% [ ... snip ... ]
\begin{document}
% [ ... snip ... ]
\begin{enumerate}
\item First Item
\lstset{language=Perl}
\begin{lstlisting}
print "First example:\n";
\end{lstlisting}
\end{enumerate}
%^^^^^^^^^^^^^^
Text in first item.
\begin{enumerate}
%^^^^^^^^^^^^^^^^
\item Second Item
\lstset{language=Perl}
\begin{lstlisting}
print "Second example:\n";
\end{lstlisting}
\end{enumerate}
%^^^^^^^^^^^^^^
Text in second item.
ORG-LIST-END-MARKER
%^^^^^^^^^^^^^^^^^^
\end{document}
#+end_src
The enumerate environment is ended after the source code block and
started before the next item again. There is a line saying
'ORG-LIST-END-MARKER' which should not be there. I marked the
relevant lines with comments.
This happens with:
(emacs-version)
"GNU Emacs 24.0.50.1 (i386-mingw-nt5.1.2600)
of 2011-09-19 on 3249CTO" on WinXP
(org-version)
"Org-mode version 7.7 (release_7.7.396.gfaaa)"
Tested with a minimal setup file:
#+begin_src emacs-lisp
;; -----------------------------------------------------------------------------
;; set path to local org repo
;; -----------------------------------------------------------------------------
(add-to-list 'load-path "~/git/org-mode/lisp")
;; pfad zu contib/lisp
(add-to-list 'load-path "~/git/org-mode/contrib/lisp")
(add-to-list 'load-path "~/git/org-mode/contrib/babel/lisp")
(require 'org-install)
(require 'org-latex)
(find-file "~/emacs/Testing/ListsSCB.org")
(org-export-as-latex-to-buffer 3)
#+end_src
: emacs -Q --eval "(load-file \"~/emacs/Testing/start-exp-test.el\")"
In "Org-mode version 7.7 (release_7.7)" the bug does not exist.
'git bisect' showed that the bug was introduced by:
commit 707897c25c8f2412a31d5f47bc2c201c5bcf8d1d
Author: Nick Dokos <nick@dokosmarshall.org>
Date: Fri Aug 19 05:02:57 2011 -0400
Eliminate extra newline(s) after example or src block.
Signed-off-by: Nick Dokos <nick@dokosmarshall.org>
--
Bis neulich ...
Thomas
next reply other threads:[~2011-10-25 11:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-25 11:32 Thomas Holst [this message]
2012-01-31 7:10 ` [bug]Bug in export to LaTex: Lists with source code blocks Boyun Tang
2012-01-31 19:33 ` Nicolas Goaziou
2012-02-03 11:27 ` Thomas Holst
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ywodbot5wblg@de.bosch.com \
--to=thomas.holst@de.bosch.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).