From mboxrd@z Thu Jan 1 00:00:00 1970 From: Feng Shu Subject: [Help] How to insert a latex command in table environment when export Date: Tue, 18 Jun 2013 21:08:28 +0800 Message-ID: <87li67woqb.fsf@news.tumashu-localhost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46557) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uovfj-00043Z-DI for emacs-orgmode@gnu.org; Tue, 18 Jun 2013 09:10:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uovff-00056z-Mz for emacs-orgmode@gnu.org; Tue, 18 Jun 2013 09:10:07 -0400 Received: from mail-pd0-f177.google.com ([209.85.192.177]:60860) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uovff-00053R-8e for emacs-orgmode@gnu.org; Tue, 18 Jun 2013 09:10:03 -0400 Received: by mail-pd0-f177.google.com with SMTP id p10so3913830pdj.36 for ; Tue, 18 Jun 2013 06:10:02 -0700 (PDT) Received: from tumashu ([110.97.84.33]) by mx.google.com with ESMTPSA id fn9sm19623494pab.2.2013.06.18.06.09.59 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 18 Jun 2013 06:10:01 -0700 (PDT) Received: from feng by news.tumashu-localhost.org with local (Exim 4.80) (envelope-from ) id 1Uove8-0001zr-LT for emacs-orgmode@gnu.org; Tue, 18 Jun 2013 21:08:28 +0800 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: orgmode -----------input--------------- #+CAPTION: test | a | b | | c | d | ------------output------------- \begin{table}[htb] \caption{test} % How can I insert a command in this place? for example: % \bitablecaption{=E4=BD=A0=E5=A5=BD}{Hello} \centering \begin{tabular}{ll} a & b\\ c & d\\ \end{tabular} \end{table} Thanks --=20