From mboxrd@z Thu Jan 1 00:00:00 1970 From: peter.frings@agfa.com Subject: bug in LaTeX exporter (org-mode 6.07) Date: Tue, 21 Oct 2008 16:37:43 +0200 Message-ID: Mime-Version: 1.0 (Apple Message framework v929.2) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KsIMt-0004RA-Up for emacs-orgmode@gnu.org; Tue, 21 Oct 2008 10:37:55 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KsIMr-0004Qg-51 for emacs-orgmode@gnu.org; Tue, 21 Oct 2008 10:37:55 -0400 Received: from [199.232.76.173] (port=39755 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KsIMr-0004Qb-2u for emacs-orgmode@gnu.org; Tue, 21 Oct 2008 10:37:53 -0400 Received: from mornm01-out.agfa.com ([134.54.1.75]:14746) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KsIMq-0000Jk-M5 for emacs-orgmode@gnu.org; Tue, 21 Oct 2008 10:37:52 -0400 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 Org-Mode Hi all, It seems that the LaTeX exporter doe not escape the ampersand character and braces when inside a table. Exporting this: === org-mode snippet ==== * Example This is an ampersand: &, and these are curly braces {}. | Below is an ampersand | and the same curly braces | | & | { and } | ========================= Results in: ==== Exported LaTeX ===== % Created 2008-10-21 Tue 16:31 \documentclass[11pt,a4paper]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{hyperref} \title{* Example} \author{Peter Frings} \date{21 October 2008} \begin{document} \maketitle \setcounter{tocdepth}{3} \tableofcontents This is an ampersand: \&, and these are curly braces \{\}. \begin{tabular}{ll} Below is an ampersand & and the same curly braces \\ & & { and } \\ \end{tabular} \end{document} ========================= Unrelated: what trick/mode/command do you guys use to make those nice snippets like: ,---[xxx] | blah | blah `--- Cheers, Peter.