From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: [babel][bug] Export latex table using noweb suddenly broken? Date: Wed, 02 Mar 2011 07:38:48 -0700 Message-ID: <87tyflwowb.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=54716 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PunVs-0001pV-4M for emacs-orgmode@gnu.org; Wed, 02 Mar 2011 09:58:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PunVq-0003gx-P4 for emacs-orgmode@gnu.org; Wed, 02 Mar 2011 09:58:52 -0500 Received: from mail-gy0-f169.google.com ([209.85.160.169]:54741) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PunVq-0003gm-L0 for emacs-orgmode@gnu.org; Wed, 02 Mar 2011 09:58:50 -0500 Received: by gyb13 with SMTP id 13so28386gyb.0 for ; Wed, 02 Mar 2011 06:58:50 -0800 (PST) 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: Jeff Horn Cc: Org-mode ml Hi Jeff, When I export your org-mode file below (or when I simply evaluate the code block with C-c C-c) it results in the following content under "Endogenizing Policy" header, which appears correct to me. --8<---------------cut here---------------start------------->8--- \section{Endogenizing Policy} \label{sec-1} Test table export. \begin{table}[htb!] \centering \begin{tabular}{llll} \toprule Expectation & Pre-policy & Post-policy & Cycle Summary \\ \midrule Larger gov't sector & $\downarrow C$, $\downarrow U$, $\uparrow K$, $\uparrow Y$ & $\downarrow C$, $\downarrow U$, $\downarrow K$, $\downarrow Y$ & SR $\uparrow Y$, LR $\downarrow Y$ \\ Smaller gov't sector & $\uparrow C$, $\uparrow U$, $\downarrow K$, $\downarrow Y$ & $\uparrow C$, $\uparrow U$, $\uparrow K$, $\uparrow Y$ & SR $\downarrow Y$, LR $\uparrow Y$ \\ \bottomrule \end{tabular} \end{table} --8<---------------cut here---------------end--------------->8--- Best -- Eric Jeff Horn writes: > Hey orgsters, > > A sample document like the one below was compiling fine on an older > git commit, say about 10 days ago. Now, the tabular environment is > wrapped in latex verbatim. It's as if it is no longer respecting the > :noweb header. > > ----- begin org doc ------ > #+TITLE: Table Export Test > > * Endogenizing Policy > Test table export. > #+source: tab-export > #+begin_src latex :exports results :results latex :noweb yes > \begin{table}[htb!] > \centering > <> > \end{table} > #+end_src > ** Tables :noexport: > #+tblname: tab-test > | Expectation | Pre-policy > | Post-policy > | Cycle Summary | > |----------------------+-------------------------------------------------------------+----------------------------------------------------------------+------------------------------------| > | Larger gov't sector | $\downarrow C$, $\downarrow U$, $\uparrow K$, > $\uparrow Y$ | $\downarrow C$, $\downarrow U$, $\downarrow K$, > $\downarrow Y$ | SR $\uparrow Y$, LR $\downarrow Y$ | > | Smaller gov't sector | $\uparrow C$, $\uparrow U$, $\downarrow K$, > $\downarrow Y$ | $\uparrow C$, $\uparrow U$, $\uparrow K$, $\uparrow > Y$ | SR $\downarrow Y$, LR $\uparrow Y$ | > ------ end org doc ------ > > Can anyone else confirm?