From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Beamer presantation, Abstract and Article in same document - how to structure and how to export? Date: Wed, 27 Apr 2016 14:38:34 +0200 Message-ID: <877ffjns51.fsf@gmx.us> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34712) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1avOjz-0008EQ-Sb for emacs-orgmode@gnu.org; Wed, 27 Apr 2016 08:38:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1avOjw-0005H1-Mw for emacs-orgmode@gnu.org; Wed, 27 Apr 2016 08:38:51 -0400 Received: from plane.gmane.org ([80.91.229.3]:58409) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1avOjw-0005FN-Gn for emacs-orgmode@gnu.org; Wed, 27 Apr 2016 08:38:48 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1avOju-0005vZ-PA for emacs-orgmode@gnu.org; Wed, 27 Apr 2016 14:38:46 +0200 Received: from 46.166.138.154 ([46.166.138.154]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 27 Apr 2016 14:38:46 +0200 Received: from rasmus by 46.166.138.154 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 27 Apr 2016 14:38:46 +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 Hi, Rainer M Krug writes: > I would like to have one document containing > > 1) abstract for > 2) a presentation and > 3) a resulting paper > > My question is: how can I structure this an how can I handle the export? > > Obviously under different top level headers: > > * Abstract > #+begin_abstract > Needs top be written > #+end_abstract > > * Presentation > ** Title > *** first slide > ... > * Paper > ** Abstract > How can I refer to the abstract above? > ** ... While you may not necessarily *need* beamerarticle, you might still find it enlightening. See section 21.2 in the beamer manual. Example: #+title: beamer example with text not shown #+options: h:2 #+latex_class_options: [ignorenonframetext] * h1 text that is not part of any slide ** my first slide - a - b Another companion is #+include which you can use to extract named element from one file to the other, e.g. to share tables. > But what about the specific settings? Can I set them per subtree? > > #+LaTeX_CLASS: beamer > #+LaTeX_CLASS_OPTIONS: [bigger] Isn't the latex class guess correctly? > I could than export each subtree separate? Should be easy to do with a bit of lisp. > Can I define the name for the exported document per subtree? http://orgmode.org/org.html#index-property_002c-EXPORT_005fFILE_005fNAME-1651 > How can I switch easily between different settings? For #+LaTeX_CLASS_OPTIONS I'd maybe use a macro. I'd also use this for setting export tags, e.g. #+MACRO: exclude-tags (eval (mapconcat 'identity (list "#+EXCLUDE_TAGS:" "noexport" (concat "no" (symbol-name org-export-current-backend))) " ")) You might also find the if clause in this macro interesting: #+MACRO: abbr (eval (if (org-export-derived-backend-p org-export-current-backend 'html) "@@html:@@$1@@html:@@" "$1")) Hope it helps, Rasmus -- If you can mix business and politics wonderful things can happen!