From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julius Dittmar Subject: export org file ignoring presence of :export: tags Date: Thu, 26 Jul 2018 18:16:07 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59005) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fiiw2-0002Aq-Gy for emacs-orgmode@gnu.org; Thu, 26 Jul 2018 12:16:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fiivz-0001gk-7v for emacs-orgmode@gnu.org; Thu, 26 Jul 2018 12:16:14 -0400 Received: from mout.gmx.net ([212.227.15.15]:36059) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fiivy-0001fk-SI for emacs-orgmode@gnu.org; Thu, 26 Jul 2018 12:16:11 -0400 Received: from [192.168.175.209] ([87.139.53.30]) by mail.gmx.com (mrgmx001 [212.227.17.190]) with ESMTPSA (Nemesis) id 0LhfN3-1gLr7R2B2P-00msZY for ; Thu, 26 Jul 2018 18:16:08 +0200 Content-Language: de-DE 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: Org Mode Hi, I'm still an elisp beginner, so please bear with me. I would like to be able to fully export org-mode files which make use of the :export: tag. Easist solution would be to remove the :export: tag, but usually I want it's effect. But from time to time I need the full text exported. I tried: === file test.org: === * toppic with export tag :export: * toppic without export tag === end of file test.org === Export via: emacs test.org --eval "(let ((org-export-exclude-tags '())) (org-latex-export-to-latex nil nil nil nil nil))" --kill Contrary to my expectation, only the first toppic appears in the resulting TeX file. Any help appreciated. Julius