From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Elston Subject: Re: latex export: using levels to export to beamer and article-only mode (with beamerarticle) Date: Wed, 20 Oct 2010 18:31:37 -0700 Message-ID: <4CBF97F9.8070502@comcast.net> References: <4CBDC165.4030504@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=49986 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P8k0Z-0000Jl-1Y for emacs-orgmode@gnu.org; Wed, 20 Oct 2010 21:31:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P8k0X-0001Rn-6A for emacs-orgmode@gnu.org; Wed, 20 Oct 2010 21:31:54 -0400 Received: from qmta05.westchester.pa.mail.comcast.net ([76.96.62.48]:48973) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P8k0X-0001R6-0q for emacs-orgmode@gnu.org; Wed, 20 Oct 2010 21:31:53 -0400 In-Reply-To: <4CBDC165.4030504@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Jay, I do something similar but don't use beamer. I have two sets of latex output from my notes, one for handouts and one for lecture notes. I use an arrangement of sub-headings without titles but with tags for describing what is included in each set of output. It is all put together with an SCons script to take the specific notes and generate a PDF output for notes and handouts. How this could be folded into a beamer presentation I am not sure. If you would like details let me know and I can send you a representative sample to play with. It is kind of complicated, unfortunately, since it also makes use of additional entries in org-export-latex-classes, but since I have it working it meets my needs. YMMV. Mark On 10/19/2010 9:03 AM, Jay Snoddy wrote: > I am attempting to make a presentation and lecture notes out of org, > similar to what I have done before in normal latex. > > I would like to use the heading levels to determine what does or does > not get displayed in presentation mode. The very lowest levels would be > seen only in lecture notes; the latter might be extensive text. > (Note that the lecture notes are to be in the latex class, article, with > \beamerarticle.... Not as the beamer "notes" per se . Beamer allows for > "modes" to hide article content from slides) > > I am an org mode and emacs newbie and seem to be making newbie mistakes > in approach, though, so I would like to ask for ideas on the "best" > approach for this. > > I would like to do something like the following... > > * section > ** subsection > *** frame (but possibly subsubsection in article mode.) > **** one (and only one) item within an itemized list environment > ***** \only
{ \paragraph{%s}} > ****** \only
{ \subparagraph{%s}} > ******* \only
{%s} > ******** \only
{%s} > > I would like to avoid blocks or labels for this and just determine this > by heading level, as --at least in my newbie hands-- moving things > around when writing/revising is a lot simpler if I just stick with > simple outlining. > For the subset of work involving lecture notes, I would be willing to > lose ability to change frame levels. > I am using a day old Org version. > > Any thoughts or suggestions would be very much appreciated! >