From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: =?UTF-8?B?UmU6IEJ1ZzogQy11IE0teCBvcmctZm9vdG5vdGUtYWN0aW9uIHNv?= =?UTF-8?B?cnQgZGVsZXRlcyBmb290bm90ZXMgdXNlZCBpbiAjK2luY2x1ZGU64oCZZCBm?= =?UTF-8?B?aWxlcyBbOC4yLjEwIChyZWxlYXNlXzguMi4xMCBAIC91c3Ivc2hhcmUvZW1h?= =?UTF-8?B?Y3MvMjUuMy9saXNwL29yZy8pXQ==?= Date: Sun, 30 Dec 2018 11:01:54 +0100 Message-ID: <875zvb1gfh.fsf@nicolasgoaziou.fr> References: <87bm56et9d.fsf@web.de> <87ftui2f0l.fsf@nicolasgoaziou.fr> <877eftex4w.fsf@web.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59070) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdXvD-000461-5i for emacs-orgmode@gnu.org; Sun, 30 Dec 2018 05:02:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdXuy-0001GO-04 for emacs-orgmode@gnu.org; Sun, 30 Dec 2018 05:02:07 -0500 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:40221) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gdXux-00017D-C0 for emacs-orgmode@gnu.org; Sun, 30 Dec 2018 05:01:59 -0500 In-Reply-To: <877eftex4w.fsf@web.de> (Arne Babenhauserheide's message of "Fri, 28 Dec 2018 11:58:07 +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" To: Arne Babenhauserheide Cc: emacs-orgmode@gnu.org Hello, Arne Babenhauserheide writes: > here=E2=80=99s a minimal release. Add it into an org-file, then create ma= in.org > and sub.org with M-x org-babel-tangle. Finally run the code-block in > main.org. > > #+BEGIN_SRC org :tangle main.org > ,#+include: sub.org > > Here is a footnote[fn:1] > > run the following code block with C-c C-c and answer with =3Ds=3D > ,#+BEGIN_SRC elisp > (org-footnote-action t) > ,#+END_SRC > > ,* Footnotes > > [fn:1] footnote referenced in main > > [fn:2] footnote referenced in sub > > #+END_SRC > > #+BEGIN_SRC org :tangle sub.org > This footnote will get lost[fn:2] > #+END_SRC `org-footnote-action' does nothing.=20 However this will probably not export as you would expect. Indeed, footnotes in included file are independent, so you cannot reference footnotes between included files. Regards, --=20 Nicolas Goaziou