Greetings Nicolas. Nicolas Goaziou <n.goaz...@gmail.com> writes:
>> 1. A way to denote that a certain element (figure, equation, part of >> a longer equation, a piece of text etc.) goes into the Beamer >> export. By default, material should _not_ be included in the >> Beamer export. I don't know how to achieve this. >> >> I did find SELECT_TAGS in the manual, so if I were to export entire >> subtrees into Beamer, maybe I could change the value of this when I >> am doing a Beamer export. But could I use this for individual >> elements, such as an equation or a figure? > > You can use drawers: > * Some section > :HANDOUT: > ... > :END: > :BOOK: > ... > :END: > > Then, you can play with `org-export-with-drawers' and its OPTIONS > counterpart: > #+OPTIONS: d:("BOOK") > for a book-only export. > #+OPTIONS: d:(not "HANDOUT") > for an everything-but-handout export... This looks like a nice approach if I did not have to specify any BOOK drawers. That is, if there would be a way to export _only_ the contents of HANDOUT drawers so that the macros, elements etc. outside the drawers would still be applicable. It also seems that the scope of a drawer can not include a new headline. That is, the following does not seem to work: # -------------------------------------------------------------------- #+TITLE: drawer-test #+OPTIONS: d:(not "HANDOUT") * testing drawers ** part of the main text :HANDOUT: ** only in handouts :END: :HANDOUT: also just in handouts :END: # -------------------------------------------------------------------- Thanks! I will keep this in mind when I try out different things. Jarmo