From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Julius_M=c3=bcller?= Subject: Re: export org file ignoring presence of :export: tags [SOLVED] Date: Mon, 30 Jul 2018 18:21:38 +0200 Message-ID: <57152e87-f900-b522-fb16-b6d79ea76ca7@eureca.de> References: 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]:36564) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fkAvZ-0006qo-ND for emacs-orgmode@gnu.org; Mon, 30 Jul 2018 12:21:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fkAvW-0007Q1-W8 for emacs-orgmode@gnu.org; Mon, 30 Jul 2018 12:21:45 -0400 Received: from eureca.de ([87.139.53.30]:34840) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fkAvW-0007P4-NE for emacs-orgmode@gnu.org; Mon, 30 Jul 2018 12:21:42 -0400 Received: from localhost (unknown [127.0.0.1]) by eureca.de (Postfix) with ESMTP id 0B51CA0389 for ; Mon, 30 Jul 2018 16:21:40 +0000 (UTC) Received: from eureca.de ([127.0.0.1]) by localhost (DMZ.intern.eureca.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Kjy-mRYzDqAY for ; Mon, 30 Jul 2018 18:21:38 +0200 (CEST) Received: from [192.168.175.209] (WRK.intern.eureca.de [192.168.175.209]) (Authenticated sender: s4ksgd5e2nwv@eureca.de) by eureca.de (Postfix) with ESMTPSA id 92587A02B6 for ; Mon, 30 Jul 2018 18:21:38 +0200 (CEST) In-Reply-To: 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: emacs-orgmode@gnu.org I should have used org-export-select-tags instead of org-export-exclude-tags. Sorry for the noise. Julius Am 26.07.2018 um 18:16 schrieb Julius Dittmar: > 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 >