From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Harkins Subject: Re: [ox-latex] How to force ALL captions below their referents? Date: Sat, 4 Oct 2014 11:41:17 +0800 Message-ID: <20141004114117.3284b6f1@hjh-e431> References: <20141002152329.673e445b@hjh-e431> <87ppea76pv.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37161) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XaGEL-0001Uy-Di for emacs-orgmode@gnu.org; Fri, 03 Oct 2014 23:42:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XaGEG-0003vz-BG for emacs-orgmode@gnu.org; Fri, 03 Oct 2014 23:42:01 -0400 Received: from smtpbg303.qq.com ([184.105.206.26]:39834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XaGEF-0003s9-Ez for emacs-orgmode@gnu.org; Fri, 03 Oct 2014 23:41:56 -0400 In-Reply-To: <87ppea76pv.fsf@nicolasgoaziou.fr> 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: orgmode On Thu, 02 Oct 2014 18:54:20 +0200 Nicolas Goaziou wrote: > You mean moving `org-latex-table-caption-above' to > `org-latex-caption-above' and making sure every block complies to the > variable? Sorry for the late reply. I wasn't feeling quite well yesterday. Something like that would do it, I think. I hesitate about breaking backward compatibility, but at the same time, I'm hard-pressed to imagine why one would want captions to be differently placed in the same document. I suppose, if somebody needs to move a caption to the top or bottom overriding the default, it could be an attribute, hypothetically: #+name: blah #+caption: blah blah #+attr_latex: :captionpos t #+begin_figure ... #+end_figure "t" would put it at the top, ":captionpos b" at the bottom and ":captionpos nil" (or not specified) would use the default from the configuration variable. Reasonable? hjh