From mboxrd@z Thu Jan 1 00:00:00 1970 From: Darlan Cavalcante Moreira Subject: Re: How to suppress \label commands in beamer export Date: Fri, 02 Sep 2011 09:14:55 -0300 Message-ID: <4e60c8c4.1373650a.5081.056a@mx.google.com> References: <4e5fbabd.a184ec0a.4c77.0671@mx.google.com> <87ehzzuyir.fsf@ucl.ac.uk> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:47391) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzSeF-0001ZG-RQ for emacs-orgmode@gnu.org; Fri, 02 Sep 2011 08:15:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QzSeE-0005N1-AQ for emacs-orgmode@gnu.org; Fri, 02 Sep 2011 08:15:03 -0400 Received: from mail-gw0-f41.google.com ([74.125.83.41]:55907) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzSeE-0005Mv-4z for emacs-orgmode@gnu.org; Fri, 02 Sep 2011 08:15:02 -0400 Received: by gwaa20 with SMTP id a20so1722250gwa.0 for ; Fri, 02 Sep 2011 05:15:01 -0700 (PDT) In-Reply-To: <87ehzzuyir.fsf@ucl.ac.uk> 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: Darlan Cavalcante Moreira , Orgmode Mailing List Thanks Eric, The ideal case if if I could disable label creation and labels would be created only when I specifically write a <>, for instance. But I understand this is hard coded right now. If I don't use overlays at all to change the blocks in the right side and just put them into separates frames, then the figure in the left (when I put one there) will slight change its vertical position. This is annoying and it is the reason why overprint is used. I'll try to use overlayarea instead. The overlayarea environment requires two arguments, the width and the height of the area. Overprint is just a more user friendly way to use overlayarea where the width is "all space available" and the height is automatically determined as the height of the largest thing inside the overlayarea. Since overlayarea requires two arguments, like --8<---------------cut here---------------start------------->8--- \begin{overlayarea}{width}{height} \only<1> {lalala} \only<2> {lelele} \end{overlayarea} --8<---------------cut here---------------end--------------->8--- is there a suggested way to map oberlayarea into org-beamer-environments-extra? The only way I can think is to require the user to type "{width}{height}" in the headline (with the curly brackets) and use somethink like "\\begin{overprint}%h" in the template definition. -- Darlan At Fri, 02 Sep 2011 09:41:32 +0100, Eric S Fraga wrote: > > Darlan Cavalcante Moreira writes: > > > I'm trying to convert a presentation I've done in beamer to org-mode. I'm > > going to improve this presentation and add more stuff to it. I'd like to do > > it in org-mode. > > > > However, org adds \label{sec-numbers} in the generated tex file after all > > environments and this adds some blank space between the blocks in the final > > presentation. I understand this extra blank space is more like a latex > > issue, but I couldn't find a way to stop org-mode from creating the \label > > lines. > > Having looked at the code, there definitely does not appear to be any > way to turn these off. It would be straightforward to modify the code > > --8<---------------cut here---------------start------------->8--- > (when label > (insert (mapconcat (lambda (l) (format "\\label{%s}" l)) > label-list "\n") "\n")) > --8<---------------cut here---------------end--------------->8--- > > or, more likely, the code in =org-export-latex-subcontent= which > actually defines =label=? This could be made optional depending on the > num: #+OPTION, say? But it may not be straightforward because labels > are not only due to sectioning, if I understand the code correctly... > > However, the problem with spacing appears to be because of some > interaction between labels and overprint. I wonder if maybe there is an > easier way (in the meantime) to accomplish what you want without > overprint? Just curious... > > -- > : Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.0.50.1 > : using Org-mode version 7.7 (release_7.7.238.gc51b7)