From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: exporting emphasised text (bold, italics etc.) in ORGTBL Date: Tue, 21 Jun 2011 11:28:09 -0400 Message-ID: <5026.1308670089@alphaville.dokosmarshall.org> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48012) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZ2sX-0004zj-5t for emacs-orgmode@gnu.org; Tue, 21 Jun 2011 11:28:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZ2sT-0006sq-8s for emacs-orgmode@gnu.org; Tue, 21 Jun 2011 11:28:36 -0400 Received: from vms173019pub.verizon.net ([206.46.173.19]:50363) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZ2sS-0006sj-VK for emacs-orgmode@gnu.org; Tue, 21 Jun 2011 11:28:33 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173019.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LN500DNZCAX2V20@vms173019.mailsrvcs.net> for emacs-orgmode@gnu.org; Tue, 21 Jun 2011 10:28:15 -0500 (CDT) In-reply-to: Message from Benjamin Slade of "Mon, 20 Jun 2011 10:12:58 CDT." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Benjamin Slade Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Benjamin Slade wrote: > When I'm using orgtbl in the midst of a LaTeX document, is there a way to tell it to export *bold* > as \textbf{bold}, /italics/ as \textit{italics} etc.? Yes, just like that. For example, the following works fine for me: --8<---------------cut here---------------start------------->8--- * foo Here's a table: | foo | bar | |---------------+-----------------| | 1 | 2 | | 3 | 4 | | \textbf{bold} | \textit{italic} | | | | --8<---------------cut here---------------end--------------->8--- Not sure if you are talking about radio tables in a LaTeX file, but that too seems to work fine (see appendix A.5.1 of the Org manual for more details on this: --8<---------------cut here---------------start------------->8--- \documentclass{article} \begin{document} Here's a table of stuff: % BEGIN RECEIVE ORGTBL to-buy \begin{tabular}{rr} foo & bar \\ \hline 1 & 2 \\ 3 & 4 \\ \textbf{bold} & \textit{italic} \\ & \\ \end{tabular} % END RECEIVE ORGTBL to-buy %The Org table is inside a LaTeX comment. % #+ORGTBL: SEND to-buy orgtbl-to-latex % | foo | bar | % |---------------+-----------------| % | 1 | 2 | % | 3 | 4 | % | \textbf{bold} | \textit{italic} | % | | | \end{document} %%% Local Variables: %%% mode: latex %%% TeX-master: t %%% End: --8<---------------cut here---------------end--------------->8--- Nick