From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Inline code in tables? Date: Thu, 11 Apr 2013 17:56:10 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:58496) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQQPd-000297-7J for emacs-orgmode@gnu.org; Thu, 11 Apr 2013 18:56:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQQPc-0000xc-Cf for emacs-orgmode@gnu.org; Thu, 11 Apr 2013 18:56:13 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:54500) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQQPc-0000w1-5W for emacs-orgmode@gnu.org; Thu, 11 Apr 2013 18:56:12 -0400 Received: by mail-lb0-f173.google.com with SMTP id w20so2102523lbh.18 for ; Thu, 11 Apr 2013 15:56:11 -0700 (PDT) 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: emacs-orgmode I have a table like so: | Title | Title | |-------+-------------------------| | var1 | src_R[:session r]{var1} | | var2 | src_R[:session r]{var2} | | var3 | src_R[:session r]{var3} | I just had the same in an itemized list, and it worked fine. Then I wanted to add more attributes and thought a table would be a better bet. The table is exporting as LaTeX math formatted: \begin{tabular}{ll} \toprule Title & Title\\ \midrule var1 & src$_\mathrm{R[}$:session r]\{var1\}\\ var2 & src$_\mathrm{R[}$:session r]\{var2\}\\ var3 & src$_\mathrm{R[}$:session r]\{var3\}\\ \bottomrule \end{tabular} Thanks for any suggestions, John