From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: [Babel] The first line of the code blocks disappears in the tangled file Date: Mon, 13 Dec 2010 13:23:43 -0700 Message-ID: <87bp4ph168.fsf@gmail.com> References: <8062v4l9f0.fsf@missioncriticalit.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=41923 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PSEw5-00014m-6D for emacs-orgmode@gnu.org; Mon, 13 Dec 2010 15:23:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PSEw3-0007bF-Mm for emacs-orgmode@gnu.org; Mon, 13 Dec 2010 15:23:53 -0500 Received: from mail-yw0-f41.google.com ([209.85.213.41]:53267) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PSEw3-0007b7-I0 for emacs-orgmode@gnu.org; Mon, 13 Dec 2010 15:23:51 -0500 Received: by ywj3 with SMTP id 3so4221369ywj.0 for ; Mon, 13 Dec 2010 12:23:51 -0800 (PST) In-Reply-To: (Chris Malone's message of "Wed, 8 Dec 2010 09:24:42 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Chris Malone Cc: =?utf-8?Q?S=C3=A9bastien?= Vauban , emacs-orgmode@gnu.org I am able to reproduce this error when evaluating a latex code block, so for example #+begin_src org :results latex :results replace ,- eric ,- schulte #+end_src #+results: #+BEGIN_LaTeX \begin{itemize} \item schulte \end{itemize} #+END_LaTeX This is due to the fact that org mode code blocks in the presence of ":results latex" or ":results html" will actually convert their contents to the requested language using Org-mode's export mechanism. I believe that in this case the latex exporter wants the first line of the code block to be used as a title. I've just pushed up a patch which pads the first line of org-mode code blocks with an empty title during latex export. Best -- Eric Chris Malone writes: > Hi Seb, > > I can't say that I understand the problem, but I can reproduce it - any line right after the #+begin_src org :results latex is being > stripped upon tangle.? Not sure if it helps or not, but I'm using org-mode version 7.3 =release_7.3.89.g97f4c.dirty= with emacs > 22.2.1. > > Chris > > 2010/12/8 S?bastien Vauban > > #+TITLE: ? ? Isodoc letter (to be tangled to LaTeX file) > #+DATE: ? ? ?2010-12-08 > #+LANGUAGE: ?fr_FR > > Right now, this letter *must be tangled* and post-processed via =PDFLaTeX=. It > can't be exported directly to PDF/HTML (=args out of range= error). > > The problem I'm reporting here is visible *in the tangled file* (TeX). So, to > reproduce it, just do =C-c C-v C-t= on this file, and look at the tangled one. > > * To > > #+begin_src csv :tangle addresses.csv
> FirstName,LastName,Address,PostCode,Town
> Anybody,Kind Enough,to look,at,this
> #+end_src
> > * Subject > #+srcname: subject > > #+begin_src org :results latex
> This is my subject line
> #+end_src
> > * Opening > #+srcname: opening > > #+begin_src org :results latex
> Dear,
> #+end_src
> > * Body > #+srcname: body > > #+begin_src org :results latex
> This example was working for me in the past but is having problems now (at
> least, on my new Windows machine -- after the Ubuntu one died): the first line
> of every block of text is simply eaten when being tangled.
>
> The second paragraph does not exhibit any particular trouble, so it really is
> the first line of every code block. Notice, *in the TeX tangled file*, that:
>
> - the one-liner subject becomes void
> - the one-liner opening becomes void
> - the body looses its first line
> - the one-liner closing becomes void
> #+end_src
> > * Closing > #+srcname: closing > > #+begin_src org :results latex
> Can you reproduce this?
> #+end_src
> > * Letter composition > > #+begin_src latex :noweb yes :tangle yes
> \documentclass[11pt]{isodoc}
> \usepackage[utf8x]{inputenc}
> \usepackage[T1]{fontenc}
> \usepackage{datatool}
> \DTLloaddb{addresses}{addresses.csv}
>
> \usepackage[scorpios]{isodoc-style}
>
> \setupdocument{
> subject = {%
> <<subject()>>},
> opening = {%
> <<opening()>>},
> closing = {%
> <<closing()>>}
> }
>
> \begin{document}
> \DTLforeach{addresses}{%
> \firstname=FirstName,%
> \lastname=LastName,%
> \addressi=Address,%
> \postcode=PostCode,%
> \town=Town%
> }{%
> \letter[to={\firstname~\lastname\\\addressi\\\postcode~\town}]{%
> <<body()>>
> }}
> \end{document}
> #+end_src
> > Best regards, > ?Seb > > -- > S?bastien Vauban > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode