From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: #+bind options ignored during async export Date: Mon, 26 Mar 2018 16:39:43 +0200 Message-ID: <87zi2ukij4.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46612) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f0THw-0006YN-3H for emacs-orgmode@gnu.org; Mon, 26 Mar 2018 10:39:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f0THs-0006T5-P6 for emacs-orgmode@gnu.org; Mon, 26 Mar 2018 10:39:56 -0400 Received: from [195.159.176.226] (port=40969 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f0THs-0006Rd-Ha for emacs-orgmode@gnu.org; Mon, 26 Mar 2018 10:39:52 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1f0TFm-0007F2-K9 for emacs-orgmode@gnu.org; Mon, 26 Mar 2018 16:37:42 +0200 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 The options specified by #+ keywords are set during asynchronous export whereas those specified by the #+BIND: method aren't. In the following example, org-latex-image-default-width is set to .25\linewidth only in synchronous export whereas the author is set regardless of the type of export. --8<---------------cut here---------------start------------->8--- #+AUTHOR: myself #+BIND: org-latex-image-default-width ".25\\linewidth" * 1st heading [[file:some_picture.png]] --8<---------------cut here---------------end--------------->8--- I think both the #+KEYWORD: and #+BIND: should have the same behaviour whereas one is using async export or not. Julien.