From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Welle Subject: Re: org-reveal: content side by side Date: Wed, 07 Feb 2018 18:42:37 +0100 Message-ID: <87372chf1u.fsf@luisa.c0t0d0s0.de> References: <87lgg9c96y.fsf@luisa.c0t0d0s0.de> <87po5k61af.fsf@luisa.c0t0d0s0.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51153) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejTk7-00015m-UO for emacs-orgmode@gnu.org; Wed, 07 Feb 2018 12:42:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejTk4-0004Ma-Rs for emacs-orgmode@gnu.org; Wed, 07 Feb 2018 12:42:47 -0500 Received: from mout.gmx.net ([212.227.15.19]:51582) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ejTk4-0004Lx-H8 for emacs-orgmode@gnu.org; Wed, 07 Feb 2018 12:42:44 -0500 Received: from stella.c0t0d0s0.de ([2.247.240.142]) by mail.gmx.com (mrgmx002 [212.227.17.190]) with ESMTPSA (Nemesis) id 0MNYxW-1ecIjg00L4-0079Nh for ; Wed, 07 Feb 2018 18:42:42 +0100 Received: from Stella (stella.c0t0d0s0.de [192.168.42.1]) by stella.c0t0d0s0.de (Postfix) with ESMTP id 5C804C43AC for ; Wed, 7 Feb 2018 18:42:37 +0100 (CET) In-Reply-To: (Matt Price's message of "Mon, 5 Feb 2018 19:37:39 -0500") 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 Hello, Matt Price writes: > for this issue, I define a class "paired" in my local cass file (or > actually, I now use a very modestly edited custom theme) : > > > .paired { > float:left !important; > max-width:47% !important; > > } > > and then in the org file: > :#+ATTR_HTML: :class paired > > That works OK for me. the "!important" is necessary because reveal css is > prtty greedy & hard to override. thanks, I will check it out. I have to say it takes quite some time to get a presentation that looks as good as the beamer based presentation I use as an example. The current issue I have is this. I have a structure like this: * foo ** foo1 ** foo2 Basically foo acts as a container for the content. I want foo to appear in the table of contents and I want two slides, foo1 and foo2, and none for foo. I'm nearly there, but I don't know how to suppress the generation of a slide for foo. I could use this structure: * foo1 * foo2 But I miss the container that groups the content for me, the presenter. And what is more important, I don't know how to get foo into the TOC (in a nice way). Or I could use: * foo1 ** foo2 Which seems to have even more issues: the content of foo2 is on the same level as the content of foo1, it's not sub-content. The headers of the slides have different sizes then, etc. Regards hmw