Re: [Orgmode] [bug] beamer export envargs for column not working properly

2010-11-26 Thread Eric S Fraga
Carsten Dominik  writes:

[...]

> Hi Eric,
>
> thank you for the more detailed example.  I think this should
> be fixed now.  The documentation was not really wrong, because
> it only mentioned c[...] and not c<...>.  But I agree that
> there is not reason to no allow this.

Very true!  But thanks for extending this.  I'll try it out later when I
get back to my slides.

> Thanks, Eric, for your continuous effort to help improving Org!
> We would not have BEAMER export without you, I think - a fact
> that is now mentioned in the manual, in the acknowledgement
> section.  

You're very welcome but my contributions are minimal in comparison!  And
it's easy to contribute from such a good starting point.

-- 
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 23.2.1
: using Org-mode version 7.3 (release_7.3.99.g9db0.dirty)

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [bug] beamer export envargs for column not working properly

2010-11-26 Thread Carsten Dominik


On Nov 21, 2010, at 10:49 AM, Eric S Fraga wrote:


Carsten Dominik  writes:


Hi Eric,

could you make me a slightly more complete example, with your beamer
setup?  So a full test file that will show this behavior?

Thanks.

- Carsten


Sure.  The attached example has a single slide.  With the file as it  
is,

i.e. with an ignored heading for the second column of the slide, the
slide overlay directive is thrown away upon export.

If you change the headline of the second column to be a block heading
(C-c C-b b), on export the overlay directive is not thrown away but it
is attached to the block and not the column.  This is okay in that
accomplishes the same purpose (in this case but not others);  
however, it

does not match the documentation in any case.


Hi Eric,

thank you for the more detailed example.  I think this should
be fixed now.  The documentation was not really wrong, because
it only mentioned c[...] and not c<...>.  But I agree that
there is not reason to no allow this.

Thanks, Eric, for your continuous effort to help improving Org!
We would not have BEAMER export without you, I think - a fact
that is now mentioned in the manual, in the acknowledgement
section.

Cheers

- Carsten



Thanks,
eric


--
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 23.2.1
: using Org-mode version 7.3 (release_7.3.104.gf692)



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [bug] beamer export envargs for column not working properly

2010-11-21 Thread Eric S Fraga
Carsten Dominik  writes:

> Hi Eric,
>
> could you make me a slightly more complete example, with your beamer
> setup?  So a full test file that will show this behavior?
>
> Thanks.
>
> - Carsten

Sure.  The attached example has a single slide.  With the file as it is,
i.e. with an ignored heading for the second column of the slide, the
slide overlay directive is thrown away upon export.  

If you change the headline of the second column to be a block heading
(C-c C-b b), on export the overlay directive is not thrown away but it
is attached to the block and not the column.  This is okay in that
accomplishes the same purpose (in this case but not others); however, it
does not match the documentation in any case.

Thanks,
eric

#+TITLE: Presentation with Org-Mode and Beamer 
#+AUTHOR:Eric S Fraga
#+EMAIL: e.fr...@ucl.ac.uk
#+DATE:  2010.09.05 00:42:34
#+DESCRIPTION: 
#+KEYWORDS: 
#+LANGUAGE:  en
#+OPTIONS:   H:5 num:t toc:t \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:nil
#+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: 

#+startup: oddonly
#+startup: beamer
#+LaTeX_CLASS: beamer
#+LaTeX_CLASS_OPTIONS: [presentation]

#+BEAMER_FRAME_LEVEL: 2

#+startup: fninline

#+COLUMNS: %40ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) %4BEAMER_col(Col) %10BEAMER_extra(Extra)

* Introduction
*** A slide with two columns
* Some notes	  :BMCOL:B_block:
  :PROPERTIES:
  :BEAMER_col: 0.5
  :BEAMER_env: block
  :END:
  - some text
  - and some more
  - and yet more
* More notes  :BMCOL:B_ignoreheading:
  :PROPERTIES:
  :BEAMER_col: 0.5
  :BEAMER_env: ignoreheading
  :BEAMER_envargs: c<2->
  :END:
  - some important notes
  - and even more important ones
  - and some maths: $\sin^{2}(x)$

-- 
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 23.2.1
: using Org-mode version 7.3 (release_7.3.104.gf692)
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [bug] beamer export envargs for column not working properly

2010-11-21 Thread Carsten Dominik

Hi Eric,

could you make me a slightly more complete example, with your beamer  
setup?

So a full test file that will show this behavior?

Thanks.

- Carsten

On Nov 21, 2010, at 1:28 AM, Eric S Fraga wrote:


Hi,

I am trying to create a beamer slide which has two columns.  The  
second
column should only appear after a while (the 6th uncovering  
operation).

In latex, I would do:

: \begin{column}<6->{0.4\textwidth}

say.  In org, I would expect to be able to get this latex code  
generated

by the following:

--8<---cut here---start->8---
* column heading  :BMCOL:B_block:
 :PROPERTIES:
 :BEAMER_col: 0.4
 :BEAMER_envargs: c<6->
 :BEAMER_extra:
 :BEAMER_env: block
 :END:
--8<---cut here---end--->8---

according to the info documentation (Beamer class export).

However, this does not work: the "c<6->" is placed verbatim in
the \begin{block} that comes after the \begin{column}.  Furthermore,  
if

I ask for the heading to be ignored (instead of defining a block), the
envargs are lost completely!

Thanks,
eric

--
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 23.2.1
: using Org-mode version 7.3 (release_7.3.104.gf692)

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] [bug] beamer export envargs for column not working properly

2010-11-20 Thread Eric S Fraga
Hi,

I am trying to create a beamer slide which has two columns.  The second
column should only appear after a while (the 6th uncovering operation).
In latex, I would do:

: \begin{column}<6->{0.4\textwidth}

say.  In org, I would expect to be able to get this latex code generated
by the following:

--8<---cut here---start->8---
* column heading  :BMCOL:B_block:
  :PROPERTIES:
  :BEAMER_col: 0.4
  :BEAMER_envargs: c<6->
  :BEAMER_extra: 
  :BEAMER_env: block
  :END:
--8<---cut here---end--->8---

according to the info documentation (Beamer class export).

However, this does not work: the "c<6->" is placed verbatim in
the \begin{block} that comes after the \begin{column}.  Furthermore, if
I ask for the heading to be ignored (instead of defining a block), the
envargs are lost completely!

Thanks,
eric

-- 
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 23.2.1
: using Org-mode version 7.3 (release_7.3.104.gf692)

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode