From mboxrd@z Thu Jan 1 00:00:00 1970 From: tsd@tsdye.com (Thomas S. Dye) Subject: Re: [PATCH] Longtable continuation strings customizable Date: Wed, 30 Oct 2013 06:36:21 -1000 Message-ID: References: <87y55fb0kf.fsf@gmail.com> <87txg1agnz.fsf@gmail.com> <87li1d9uh4.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57917) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VbYl1-0001M0-K6 for emacs-orgmode@gnu.org; Wed, 30 Oct 2013 12:36:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VbYku-0000Af-FC for emacs-orgmode@gnu.org; Wed, 30 Oct 2013 12:36:35 -0400 Received: from outbound-ss-2152.bluehost.com ([67.20.81.214]:41631) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1VbYku-0000AZ-8U for emacs-orgmode@gnu.org; Wed, 30 Oct 2013 12:36:28 -0400 In-Reply-To: <87li1d9uh4.fsf@gmail.com> (Nicolas Goaziou's message of "Mon, 28 Oct 2013 18:27:19 +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: Nicolas Goaziou Cc: Org-mode , Carsten Dominik Nicolas Goaziou writes: >> An example filter? > > (defun my-personal-table-continuation-strings (row backend info) > (when (org-export-derived-backend-p 'latex) > (replace-regexp-in-string > "multicolumn{[0-9]+}{l}{\\(.*\\)}" "String 1" > (replace-regexp-in-string > "multicolumn{[0-9]+}{r}{\\(.*\\)}" "String 2" > row nil nil 1) > nil nil 1))) > (add-to-list 'org-export-filter-table-row-functions > 'my-personal-table-continuation-strings) > > Untested. I can't get this to work :( I have this, based on the example above: #+name: tsd-continuation-strings #+begin_src emacs-lisp (defun my-personal-table-continuation-strings (row backend info) (when (org-export-derived-backend-p 'latex) (replace-regexp-in-string "multicolumn{[0-9]+}{l}{\\(.*\\)}" "\\ldots\\ continued from previous page" row nil nil 1) (replace-regexp-in-string "multicolumn{[0-9]+}{r}{\\(.*\\)}" "continued on next page \\ldots" row nil nil 1))) (add-to-list 'org-export-filter-table-row-functions 'my-personal-table-continuation-strings) #+end_src I also tried 'org-export-filter-table-functions without success. I always get the default continuation strings. I've looked around for an error message, but there doesn't appear to be one, at least that I can find. The asynchronous export runs through to completion. All the best, Tom -- Thomas S. Dye http://www.tsdye.com