* Beamer_act property is misnamed in org-mode Ubuntu package
@ 2017-09-27 3:53 James Harkins
2017-09-27 6:03 ` Eric S Fraga
0 siblings, 1 reply; 6+ messages in thread
From: James Harkins @ 2017-09-27 3:53 UTC (permalink / raw)
To: emacs-orgmode
Hi,
There seems to be a mistake in the org-mode Ubuntu 16.02 packages.
For beamer, if I C-c C-x p to add a property, one of the predefined options is:
:BEAMER_act(Act): 1
But it should be
:BEAMER_act: 1
The former is ignored in the generated LaTeX. The latter produces a correct overlay spec.
Is that still the case in the most recent org release? If yes, I'd like to file it as a bug report. If not... I guess it's time to dump the Ubuntu packages.
hjh
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Beamer_act property is misnamed in org-mode Ubuntu package
2017-09-27 3:53 Beamer_act property is misnamed in org-mode Ubuntu package James Harkins
@ 2017-09-27 6:03 ` Eric S Fraga
2017-09-27 12:50 ` James Harkins
0 siblings, 1 reply; 6+ messages in thread
From: Eric S Fraga @ 2017-09-27 6:03 UTC (permalink / raw)
To: James Harkins; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 490 bytes --]
On Wednesday, 27 Sep 2017 at 11:53, James Harkins wrote:
> Hi,
>
> There seems to be a mistake in the org-mode Ubuntu 16.02 packages.
>
> For beamer, if I C-c C-x p to add a property, one of the predefined options is:
>
> :BEAMER_act(Act): 1
I think (could be wrong on this) that org includes any properties you
already have as pre-defined options available to you. Maybe you have
this property already in your file?
--
: Eric S Fraga via Emacs 26.0.50, Org release_9.1-64-g657302
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 194 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Beamer_act property is misnamed in org-mode Ubuntu package
2017-09-27 6:03 ` Eric S Fraga
@ 2017-09-27 12:50 ` James Harkins
2017-09-28 12:16 ` Nicolas Goaziou
0 siblings, 1 reply; 6+ messages in thread
From: James Harkins @ 2017-09-27 12:50 UTC (permalink / raw)
To: Eric S Fraga; +Cc: emacs-orgmode
On September 27, 2017 14:03:06 Eric S Fraga <esflists@gmail.com> wrote:
> On Wednesday, 27 Sep 2017 at 11:53, James Harkins wrote:
>> Hi,
>>
>> There seems to be a mistake in the org-mode Ubuntu 16.02 packages.
>>
>> For beamer, if I C-c C-x p to add a property, one of the predefined options is:
>>
>> :BEAMER_act(Act): 1
>
> I think (could be wrong on this) that org includes any properties you
> already have as pre-defined options available to you. Maybe you have
> this property already in your file?
No, I have never used this (incorrect) property. This occurs in a brand new
org file too.
Oh, just did a search: ox-beamer.el, line 81, defines columns for beamer
properties, including the incantation "%10BEAMER_act(Act)" -- which, except
for the %10, matches the behavior precisely. It appears that C-c C-x p is
treating this as the true name of the property, when it's really something
for display.
Anyway, the string inserted by C-c C-x p just doesn't work.
hjh
Sent with AquaMail for Android
http://www.aqua-mail.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Beamer_act property is misnamed in org-mode Ubuntu package
2017-09-27 12:50 ` James Harkins
@ 2017-09-28 12:16 ` Nicolas Goaziou
2017-10-01 13:57 ` Adrian Bradd
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2017-09-28 12:16 UTC (permalink / raw)
To: James Harkins; +Cc: Eric S Fraga, emacs-orgmode
Hello,
James Harkins <jamshark70@zoho.com> writes:
> On September 27, 2017 14:03:06 Eric S Fraga <esflists@gmail.com> wrote:
>
>> On Wednesday, 27 Sep 2017 at 11:53, James Harkins wrote:
>>> Hi,
>>>
>>> There seems to be a mistake in the org-mode Ubuntu 16.02 packages.
>>>
>>> For beamer, if I C-c C-x p to add a property, one of the predefined options is:
>>>
>>> :BEAMER_act(Act): 1
>>
>> I think (could be wrong on this) that org includes any properties you
>> already have as pre-defined options available to you. Maybe you have
>> this property already in your file?
>
> No, I have never used this (incorrect) property. This occurs in
> a brand new org file too.
>
> Oh, just did a search: ox-beamer.el, line 81, defines columns for
> beamer properties, including the incantation "%10BEAMER_act(Act)" --
> which, except for the %10, matches the behavior precisely. It appears
> that C-c C-x p is treating this as the true name of the property, when
> it's really something for display.
>
> Anyway, the string inserted by C-c C-x p just doesn't work.
FWIW, I cannot reproduce it.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Beamer_act property is misnamed in org-mode Ubuntu package
2017-09-28 12:16 ` Nicolas Goaziou
@ 2017-10-01 13:57 ` Adrian Bradd
2017-10-01 17:05 ` Nicolas Goaziou
0 siblings, 1 reply; 6+ messages in thread
From: Adrian Bradd @ 2017-10-01 13:57 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: Eric S Fraga, emacs-orgmode, James Harkins
[-- Attachment #1: Type: text/plain, Size: 1605 bytes --]
I can reproduce this if I have something like the following in the preamble:
#+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col)
%8BEAMER_OPT(Opt)
org-set-property seems to be extracting these settings for use as heading
properties. Removing this line also removes the properties when using C-c
C-x p.
On 28 September 2017 at 08:16, Nicolas Goaziou <mail@nicolasgoaziou.fr>
wrote:
> Hello,
>
> James Harkins <jamshark70@zoho.com> writes:
>
> > On September 27, 2017 14:03:06 Eric S Fraga <esflists@gmail.com> wrote:
> >
> >> On Wednesday, 27 Sep 2017 at 11:53, James Harkins wrote:
> >>> Hi,
> >>>
> >>> There seems to be a mistake in the org-mode Ubuntu 16.02 packages.
> >>>
> >>> For beamer, if I C-c C-x p to add a property, one of the predefined
> options is:
> >>>
> >>> :BEAMER_act(Act): 1
> >>
> >> I think (could be wrong on this) that org includes any properties you
> >> already have as pre-defined options available to you. Maybe you have
> >> this property already in your file?
> >
> > No, I have never used this (incorrect) property. This occurs in
> > a brand new org file too.
> >
> > Oh, just did a search: ox-beamer.el, line 81, defines columns for
> > beamer properties, including the incantation "%10BEAMER_act(Act)" --
> > which, except for the %10, matches the behavior precisely. It appears
> > that C-c C-x p is treating this as the true name of the property, when
> > it's really something for display.
> >
> > Anyway, the string inserted by C-c C-x p just doesn't work.
>
> FWIW, I cannot reproduce it.
>
> Regards,
>
> --
> Nicolas Goaziou
>
>
[-- Attachment #2: Type: text/html, Size: 2571 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Beamer_act property is misnamed in org-mode Ubuntu package
2017-10-01 13:57 ` Adrian Bradd
@ 2017-10-01 17:05 ` Nicolas Goaziou
0 siblings, 0 replies; 6+ messages in thread
From: Nicolas Goaziou @ 2017-10-01 17:05 UTC (permalink / raw)
To: Adrian Bradd; +Cc: Eric S Fraga, emacs-orgmode, James Harkins
Hello,
Adrian Bradd <adrian.bradd@gmail.com> writes:
> I can reproduce this if I have something like the following in the preamble:
>
> #+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col)
> %8BEAMER_OPT(Opt)
>
> org-set-property seems to be extracting these settings for use as heading
> properties. Removing this line also removes the properties when using C-c
> C-x p.
Fixed. Thank you.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-10-01 17:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-27 3:53 Beamer_act property is misnamed in org-mode Ubuntu package James Harkins
2017-09-27 6:03 ` Eric S Fraga
2017-09-27 12:50 ` James Harkins
2017-09-28 12:16 ` Nicolas Goaziou
2017-10-01 13:57 ` Adrian Bradd
2017-10-01 17:05 ` Nicolas Goaziou
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).