From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: Re: org export to latex tables, with hlines and | Date: Thu, 10 Mar 2016 15:29:20 +0000 Message-ID: <87fuvyic6n.fsf@mat.ucm.es> References: <87mvq7k943.fsf@mat.ucm.es> <87pov2lm1o.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35403) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae2X5-0000mf-Uj for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 10:29:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ae2X2-0004Fz-NP for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 10:29:47 -0500 Received: from plane.gmane.org ([80.91.229.3]:49757) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae2X2-0004Fn-Gt for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 10:29:44 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ae2X0-0000JR-1c for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 16:29:42 +0100 Received: from gilgamesch.quim.ucm.es ([147.96.12.99]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Mar 2016 16:29:41 +0100 Received: from oub by gilgamesch.quim.ucm.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Mar 2016 16:29:41 +0100 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@gnu.org > Hello, > Uwe Brauer writes: > IIUC you want to put a rule after every row in the table? If that's the > case, the straightforward way to do it is to explicitly put the rule in > your table: > |/|<>| > | | | > |-+--| > Otherwise you can use a filter, e.g., > `org-export-filter-table-row-functions' and append "\\hine" there in > LaTeX-related back-ends. Hm it seems that the following works for html support | <> | <> | | this | that | | | | #+ATTR_HTML: border="2" rules="all" frame="border" But unfortunately this | \ | <> | <> | <> | | | this | that | | | | | | | #+ATTR_LATEX: :environment tabular :lend "\\\\ \\hline" Does not work. Uwe Brauer