From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pierre de Buyl Subject: Re: [Orgmode] S5 export Date: Fri, 3 Jun 2011 09:45:16 -0400 Message-ID: <61CF47B5-032E-4E67-8B79-CC990BD04819@ulb.ac.be> References: <28A74B24-4011-4F2D-AA51-7E18C4765669@chem.utoronto.ca> <87oc6tf2x3.fsf@gnu.org> <4F2BA09B-8330-4A94-923D-3E9A98F2F32B@ulb.ac.be> <87d3ixfa3x.fsf@gmail.com> <853CA2B4-BD3A-4CB6-953E-775CEEDBBCDA@ulb.ac.be> <87y61jdqsj.fsf@gmail.com> Mime-Version: 1.0 (Apple Message framework v753.1) Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:51183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QSUgp-0001Am-DO for emacs-orgmode@gnu.org; Fri, 03 Jun 2011 09:45:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QSUgn-00081Q-5d for emacs-orgmode@gnu.org; Fri, 03 Jun 2011 09:45:27 -0400 Received: from mxin.ulb.ac.be ([164.15.128.112]:53621) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QSUgm-00081E-IS for emacs-orgmode@gnu.org; Fri, 03 Jun 2011 09:45:24 -0400 In-Reply-To: <87y61jdqsj.fsf@gmail.com> 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org >> If welcomed, I have a few comments related to how I currently use =20 >> this >> function (I have a talk coming soon :-) ) > > Certainly, I'm happy to hear your feedback. > > I have the most recent version of my code up in a git repository > available at [1], with the file defining the `org-export-as-s5' =20 > function > up at [2]. I can't clone the repository. $ git clone http://gitweb.adaptive.cs.unm.edu/org-S5.git Cloning into org-S5... warning: remote HEAD refers to nonexistent ref, unable to checkout. I could get a snapshot however, from the web interface. >> - If all "star" headlines become slides, it quickly leads to >> awkward layouts with empty slides below one star headings. > > Agreed, for this reason `org-export-headline-levels' is set to 1. > >> >> I made a modification to the code to choose only one star >> headings as slides. This way, level 2 headings can be used as "in >> slide" headings. >> I used an (if (looking-at "^\\* ") XXX) in the preprocess hook >> for that. > > I think using the `org-export-headline-levels' variable should be an > easier way to implement this. See line 29 of the current code where > this variable is set. > > Oh, looking more closely, I see why you've made this change. Even > though it shouldn't affect the output it seems wasteful to add the > 'html-container-class property to non-top-level headlines. I've =20 > added a > slight modification of your change to my code. Also, you cannot CSS properties for level 2 headlines, for instance. With your modification, it is still not possible to use level 2 =20 headings in a slide with proper CSS formatting. >> - An actual "title page" seems more appropriate, so I added one >> with "title author date" as h1,h2 and h3 headings. > > Great idea. I've updated my code to include two customizable format > strings (`org-s5-title-string-fmt' and `org-s5-title-page-fmt') which > can be used to specify the title string shown at the bottom of each > page, and the title page respectively. Ok, but how should one set that ? I have the feeling that defining variables is not an easy approach. For instance, can it be set as a text field in the file ? Ok, I just read it and they are taken from the regular title author =20 and date variables. >> The css need to be tweaked a little bit to get nice results. >> My modified org-export-as-s5 function is attached. >> >> I also posted an example online. It it exported from the file s5- >> test.org with the function defined in the attached file. The css is >> very slightly modified. >> The "scientific content" of the talk is incomplete, this is =20 >> normal :-/ >> >> http://homepages.ulb.ac.be/~pdebuyl/lectures/s5-test.html >> http://homepages.ulb.ac.be/~pdebuyl/lectures/s5-test.org >> > > Very nice, I really like the title page addition, and it's great to =20= > see > pictures, code and latex equations in a single example presentation. > > I have an example with a simple theme I wrote available online [3]. > Just yesterday I added a page to Worg [4] with instructions for using > this new function which links to my simple example presentation. =20 > If you > don't mind sharing your example publicly I think it would make a great > addition to this worg page. You can post all of that, source and everything, on worg. It should =20 just not rely on links to my page for the pictures, if possible. > In general, I think this new S5 export option is turning into a very > useful addition to Org-mode. > > Cheers -- Eric It is especially useful for presentations with source code, in my =20 opinion. Regards, Pierre >> >> For those reading, I'll mention that using the html export, as done >> here, allows to include syntax-highlighted code and LaTeX equations >> very easily. >> >> Regards, >> >> Pierre >> >> Le 1 juin 11 =E0 18:41, Eric Schulte a =E9crit : >> >>> Hi Pierre, >>> >>> I've taken your very thorough S5 instructions and converted them >>> into a >>> single `org-export-as-s5' function. The attached archive file holds >>> an >>> s5.org Org-mode file which defines this function, as well as the ui >>> directory required for S5, and an html file which results from =20 >>> calling >>> the `org-export-as-s5' function in the s5.org file. >>> >>> For now the results are also posted up at >>> http://cs.unm.edu/~eschulte/notes/s5/s5.org >>> http://cs.unm.edu/~eschulte/notes/s5/s5.html >>> >>> Thanks for the clear explanation which lead to such an easy >>> translation >>> into elisp. Please let me know if you think this should be >>> augmented in >>> any way, or if the defined function throws any errors on your =20 >>> system. >>> >>> Best -- Eric >>> >>> >>> Pierre de Buyl writes: >>> >>>> Hello, >>>> >>>> After a lot a reading of org-exp.el and org-html.el I finally =20 >>>> figured >>>> out the >>>> existence of the "HTML_CONTAINER_CLASS" property. >>>> >>>> I could then figure a minimal way to make a s5 presentation. >>>> Minimal in the sens of minimum difference with the html exporter. >>>> >>>> After setting a few STYLE and OPTIONS lines in an org file, >>>> three steps are needed: >>>> 1. Set the HTML_CONTAINER_CLASS to "slide" on level 1 headings >>>> 2. Set org-export-html-toplevel-hlevel to "1", so that slide titles >>>> behave properly >>>> 3. Replace in the html output >>>>
>>>> by >>>>
>>>>
>>>>
>>>>
>>>>
>>>>

Interactive Python plotting

>>>>
>>>>
>>>> >>>>
>>>> >>>> You need the "ui" directory from the S5 archive to make it work >>>> indeed, http://meyerweb.com/eric/tools/s5/ . >>>> I attach an example org file and the resulting html (which was >>>> tweaked >>>> according to step 3). >>>> >>>> Pierre >>>> >>>> >>>> >>>> >>>> >>>> Le 3 f=E9vr. 11 =E0 12:23, Bastien a =E9crit : >>>> >>>>> Hi Pierre, >>>>> >>>>> Pierre de Buyl writes: >>>>> >>>>>> S5 allows one to present a slideshow in a web browser, even full >>>>>> screen for >>>>>> some browsers. >>>>>> I know that the topic has come here already, but I actually =20 >>>>>> hacked >>>>>> the >>>>>> excellent org-html.el export file to produde a S5 slideshow with >>>>>> org. >>>>> >>>>> This looks useful. >>>>> >>>>> By reading your code, I see org-export-as-s5 is a variation over >>>>> org-export-as-html. >>>>> >>>>> I would welcome an approach where we factor out some elements of >>>>> org-export-as-html, so that exporting to s5 would just require the >>>>> user to customize those elements. >>>>> >>>>> Does that seem reasonable to you? Would you volunteer to make >>>>> org-export-as-html a bit more general? Even a precise comparison >>>>> of org-export-as-s5 against org-export-as-html would be helpful at >>>>> this point. >>>>> >>>>> Thanks! >>>>> >>>>> --=20 >>>>> Bastien >>>> > > Footnotes: > [1] http://gitweb.adaptive.cs.unm.edu/org-S5.git > > [2] http://gitweb.adaptive.cs.unm.edu/org-S5.git/blob_plain/HEAD:/=20 > org-export-as-s5.el > > [3] http://cs.unm.edu/~eschulte/notes/s5/s5.html > > [4] http://orgmode.org/worg/org-tutorials/non-beamer-=20 > presentations.html > > --=20 > Eric Schulte > http://cs.unm.edu/~eschulte/