From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juan Pechiar Subject: latex-export + columnview: misinterpretation of section prefixes as emphasis Date: Mon, 31 May 2010 00:38:53 -0300 Message-ID: <20100531033853.GD27574@soloJazz.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=42530 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OIvqA-0002nK-Kc for emacs-orgmode@gnu.org; Sun, 30 May 2010 23:39:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OIvq8-0002sb-NZ for emacs-orgmode@gnu.org; Sun, 30 May 2010 23:39:01 -0400 Received: from cpoproxy1-pub.bluehost.com ([69.89.21.11]:35091 helo=outbound-mail-01.bluehost.com) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1OIvq8-0002sH-Dy for emacs-orgmode@gnu.org; Sun, 30 May 2010 23:39:00 -0400 Received: from r186-48-247-252.dialup.adsl.anteldata.net.uy ([186.48.247.252] helo=iso.palmas.net) by box519.bluehost.com with esmtpa (Exim 4.69) (envelope-from ) id 1OIvq4-0002no-7A for emacs-orgmode@gnu.org; Sun, 30 May 2010 21:38:57 -0600 Content-Disposition: inline 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 Hi! The test file below contains a columnview table showing section headers. Export to HTML works OK: the asterisks inside the table are transformed into indentation. Export to LaTeX: asterisk pairs are interpreted as emphasis, resulting in an incorrect renering of asterisks and bold asterisks. Following the code, I got lost at org-export-latex-fontify. I will keep searching for what is happening, but any guidance will be appreciated. Thanks! .j. Test file: ======================================== #+COLUMNS: %25ITEM * There comes the table #+BEGIN: columnview :vlines 1 :id global | | ITEM | |---+-------------------------| | | * There comes the table | | | * first | | | ** second | | | *** third | | | *** other third | | | **** fourth | | | ** other second | | / | <> | #+END: * first ** second *** third *** other third **** fourth ** other second ======================================== LaTeX output: ======================================== \begin{tabular}{l} ITEM \\ \hline * There comes the table \\ * first \\ ** second \\ *** third \\ \textbf{*} other third \\ \textbf{**} fourth \\ ** other second \\ \end{tabular} ======================================== And the PDF display reads: ======================================== ITEM * There comes the table first * second ** third * other third ** fourth * other second ========================================