From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: feature proposal, add prefix and suffix to orgtbl matrix Date: Fri, 10 Mar 2017 19:39:58 +0100 Message-ID: <874lz19ds1.fsf@nicolasgoaziou.fr> References: <87shmm7k9v.fsf@mat.ucm.es> <87k27x9hi0.fsf@nicolasgoaziou.fr> <8760jhc9oa.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54922) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cmPSO-0004DF-Dq for emacs-orgmode@gnu.org; Fri, 10 Mar 2017 13:40:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cmPSL-0002y7-Bg for emacs-orgmode@gnu.org; Fri, 10 Mar 2017 13:40:04 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:40938) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cmPSL-0002xj-55 for emacs-orgmode@gnu.org; Fri, 10 Mar 2017 13:40:01 -0500 Received: from saiph.selenimh (unknown [IPv6:2a03:a0a0:0:4301::74b]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 85A3717209A for ; Fri, 10 Mar 2017 19:39:59 +0100 (CET) Received: from ngz by saiph.selenimh with local (Exim 4.88) (envelope-from ) id 1cmPSI-0002Wy-SJ for emacs-orgmode@gnu.org; Fri, 10 Mar 2017 19:39:58 +0100 In-Reply-To: <8760jhc9oa.fsf@mat.ucm.es> (Uwe Brauer's message of "Fri, 10 Mar 2017 17:40:21 +0000") 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" To: emacs-orgmode@gnu.org Uwe Brauer writes: > Look at this > > > % BEGIN RECEIVE ORGTBL test > \[ > \begin{pmatrix} > 6 & 7 \\ > & \\ > 8 & \\ > 9 & \\ > \end{pmatrix} > \] > % END RECEIVE ORGTBL test > \begin{comment} > > #+ORGTBL: SEND test orgtbl-to-latex-matrix :splice nil :skip 0 > | 6 | 7 | > > | | | > > | 8 | | > | 9 | | > \end{comment} > > > Does not work, if I connect the table I obtain 1 matrix but I want > two, Then you need two placeholders, one for each matrix. > besides I cannot have the following result > > % BEGIN RECEIVE ORGTBL test > \[ > A= > \begin{pmatrix} > 6 & 7 \\ > & \\ > 8 & \\ > 9 & \\ > \end{pmatrix} > \] You can: \[ A= % BEGIN RECEIVE ORGTBL test \begin{pmatrix} 6 & 7 \\ & \\ 8 & \\ 9 & \\ \end{pmatrix} % END RECEIVE ORGTBL test \] \begin{comment} #+ORGTBL: SEND test orgtbl-to-latex :latex-default-table-mode math :environment pmatrix | 6 | 7 | | | | | 8 | | | 9 | | \end{comment} Regards,