From mboxrd@z Thu Jan 1 00:00:00 1970 From: andrea Crotti Subject: [babel] latex code in final pdf Date: Tue, 17 Nov 2009 11:05:04 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NALsP-0005sz-Qo for emacs-orgmode@gnu.org; Tue, 17 Nov 2009 06:05:37 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NALsL-0005qK-Rs for emacs-orgmode@gnu.org; Tue, 17 Nov 2009 06:05:37 -0500 Received: from [199.232.76.173] (port=58877 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NALsL-0005q7-6l for emacs-orgmode@gnu.org; Tue, 17 Nov 2009 06:05:33 -0500 Received: from lo.gmane.org ([80.91.229.12]:54415) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NALsK-0006Ie-Jf for emacs-orgmode@gnu.org; Tue, 17 Nov 2009 06:05:32 -0500 Received: from list by lo.gmane.org with local (Exim 4.50) id 1NALsI-0001hL-Br for emacs-orgmode@gnu.org; Tue, 17 Nov 2009 12:05:30 +0100 Received: from 46-231.eduroam.RWTH-Aachen.DE ([134.61.46.231]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Nov 2009 12:05:30 +0100 Received: from andrea.crotti.0 by 46-231.eduroam.RWTH-Aachen.DE with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 17 Nov 2009 12:05:30 +0100 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: emacs-orgmode@gnu.org I'm not so sure it's related to babel since it's in #+BEGIN_SRC haskell tags. Anyway in short I see latex code in the final source code block exported. I updated from git org-mode. This is the code that gives program: sumListCond :: Int -> Int -> [Int] -> Int sumListCond l n xs | foldl (+) 0 (take l xs) <= n = sumListCond (l + 1) n xs | otherwise = foldl (+) 0 (take (l - 1) xs) I get this strange thing sumListCond :: Int -> Int -> [Int] -> Int sumListCond l n xs \begin{center} \begin{tabular}{l} foldl(+)0(takelxs)<=n=sumListCond(l+1)nxs \\ otherwise = foldl (+) 0 (take (l - 1) xs) \\ \end{tabular} \end{center} Who tell it to create a tabular in the center? It's inside the source code block so it shoudn't evaluate "|" right?