all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Darlan Cavalcante Moreira <darcamo@gmail.com>
To: Orgmode Mailing List <emacs-orgmode@gnu.org>
Subject: How to suppress \label commands in beamer export
Date: Thu, 01 Sep 2011 14:02:49 -0300	[thread overview]
Message-ID: <4e5fbabd.a184ec0a.4c77.0671@mx.google.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1145 bytes --]


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.

In order to reproduce this, export the attached org file to a beamer
presentation. Notice how Block 1 and Block 2 (as well as Block 3 and
Block 4) have a lot of blank space between them. In fact, this makes Block
2 and Block 4 goes out of the frame.

Now, in the .tex file that org created, erase all the \label lines and
compile the file again. Notice how the blank space between the blocks
changes and now Block 2 and Block 4 fit nicely inside each frame.


Note: I use the overprint environment. The attached file has two lines that
must be executed in order to make overprint work. Maybe this environment
should be added to org-beamer-environments-default.

--
Darlan


[-- Attachment #2: test_org_beamer.org --]
[-- Type: application/octet-stream, Size: 4182 bytes --]

#+TITLE:     This is the title
#+AUTHOR:    Darlan Cavalcante Moreira
#+EMAIL:     darcamo@gmail.com
#+DATE:      \today
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE:  en
#+OPTIONS:   H:3 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS:   TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:   
#+LINK_HOME: 
#+XSLT:
#+STARTUP: odd

#+LaTeX_CLASS: beamer
#+LaTeX_CLASS_OPTIONS: [presentation]
#+BEAMER_FRAME_LEVEL: 2

#+BEAMER_HEADER_EXTRA: \usetheme[nonav,nologo]{Gtel}\usecolortheme{default}
#+LATEX_HEADER: \usepackage{pxfonts} % Font normal
#+COLUMNS: %40ITEM %10BEAMER_env(Env) %9BEAMER_envargs(Env Args) %4BEAMER_col(Col) %10BEAMER_extra(Extra)
#+PROPERTY: BEAMER_col_ALL 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 :ETC


* This is a section

*** This is frame 1
***** Columns Environment                                                    :B_columns:
      :PROPERTIES:
      :BEAMER_env: columns
      :END:
******* 0.4                                                                   :B_column:
        :PROPERTIES:
        :BEAMER_env: column
        :END:
        A figure could be here
******* 0.6                                                                   :B_column:
        :PROPERTIES:
        :BEAMER_env: column
        :END:
********* Overprint: Block 1 -> Block 3                                    :B_overprint:
          :PROPERTIES:
          :BEAMER_env: overprint
          :END:
*********** 1                                                                :B_onslide:
            :PROPERTIES:
            :BEAMER_env: onslide
            :END:
************* Block 1                                                          :B_block:
              :PROPERTIES:
              :BEAMER_env: block
              :END:
              - Some text
              - More text
                - More text
              - More text
              - More text
*********** 2                                                                :B_onslide:
            :PROPERTIES:
            :BEAMER_env: onslide
            :END:
************* Block 3                                                          :B_block:
              :PROPERTIES:
              :BEAMER_env: block
              :END:
              Some Equation
              #+begin_center
              \(
              y = Ax+b
              \)              
              #+end_center
              - Some text
              - More text
              - And more
********* Overprint: Block 2 -> Block 4                                    :B_overprint:
          :PROPERTIES:
          :BEAMER_env: overprint
          :END:
*********** 1                                                                :B_onslide:
            :PROPERTIES:
            :BEAMER_env: onslide
            :END:
************* Block 2                                                          :B_block:
              :PROPERTIES:
              :BEAMER_env: block
              :END:
              - Some text
              - More text
              - More text
              - More text
*********** 2                                                                :B_onslide:
            :PROPERTIES:
            :BEAMER_env: onslide
            :END:
************* Block 4                                                          :B_block:
              :PROPERTIES:
              :BEAMER_env: block
              :END:
              Another equation
              #+begin_center
              \(
              x = A^{-1}(y-b)
              \)
              #+end_center
              - More text

* Make overprint works                                                        :noexport:

  Just add overprint and onslide to org-beamer-environments-extra as below
  #+begin_src emacs-lisp
    ;; (setq org-beamer-environments-extra nil)
    (add-to-list 'org-beamer-environments-extra '("overprint" "O" "\\begin{overprint}" "\\end{overprint}"))
    (add-to-list 'org-beamer-environments-extra '("onslide" "l" "\\onslide<%h>" ""))
  #+end_src

[-- Attachment #3: Type: text/plain, Size: 3 bytes --]





             reply	other threads:[~2011-09-01 17:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-01 17:02 Darlan Cavalcante Moreira [this message]
2011-09-02  8:41 ` How to suppress \label commands in beamer export Eric S Fraga
2011-09-02 12:14   ` Darlan Cavalcante Moreira
2011-09-02 12:51     ` Eric S Fraga

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4e5fbabd.a184ec0a.4c77.0671@mx.google.com \
    --to=darcamo@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.