GNU bug report logs - #30239
Renaming environment "slide" to "frame"

Previous Next

Package: auctex;

Reported by: Agathe Herrou <agathe <at> herrou.fr>

Date: Wed, 24 Jan 2018 18:14:02 UTC

Severity: normal

Tags: notabug

Done: Arash Esbati <arash <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 30239 in the body.
You can then email your comments to 30239 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-auctex <at> gnu.org:
bug#30239; Package auctex. (Wed, 24 Jan 2018 18:14:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Agathe Herrou <agathe <at> herrou.fr>:
New bug report received and forwarded. Copy sent to bug-auctex <at> gnu.org. (Wed, 24 Jan 2018 18:14:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Agathe Herrou <agathe <at> herrou.fr>
To: bug-auctex <at> gnu.org
Subject: Renaming environment "slide" to "frame"
Date: Wed, 24 Jan 2018 19:10:32 +0100
[Message part 1 (text/plain, inline)]
Hello,

When using AUCTeX with Beamer, the default environment when running C-c
C-e is "slide". As far as I know, this environment doesn't exist, and
the correct one is "frame". Attached is a suggested corrective.

Best regards,

Agathe Herrou

[rename_slide_to_frame.patch (text/x-patch, attachment)]

Information forwarded to bug-auctex <at> gnu.org:
bug#30239; Package auctex. (Wed, 24 Jan 2018 18:33:01 GMT) Full text and rfc822 format available.

Message #8 received at 30239 <at> debbugs.gnu.org (full text, mbox):

From: Mosè Giordano <mose <at> gnu.org>
To: Agathe Herrou <agathe <at> herrou.fr>
Cc: 30239 <at> debbugs.gnu.org
Subject: Re: bug#30239: Renaming environment "slide" to "frame"
Date: Wed, 24 Jan 2018 19:31:58 +0100
Hi Agathe,

2018-01-24 19:10 GMT+01:00 Agathe Herrou <agathe <at> herrou.fr>:
> Hello,
>
> When using AUCTeX with Beamer, the default environment when running C-c
> C-e is "slide". As far as I know, this environment doesn't exist, and
> the correct one is "frame". Attached is a suggested corrective.

Thanks for your contribution, however there is no "slide" environment
in our style file for beamer:
https://git.savannah.gnu.org/cgit/auctex.git/tree/style/beamer.el
Where did get that style file?

Bye,
Mosè




Information forwarded to bug-auctex <at> gnu.org:
bug#30239; Package auctex. (Wed, 24 Jan 2018 19:48:02 GMT) Full text and rfc822 format available.

Message #11 received at 30239 <at> debbugs.gnu.org (full text, mbox):

From: Agathe Herrou <agathe <at> herrou.fr>
To: Mosè Giordano <mose <at> gnu.org>
Cc: 30239 <at> debbugs.gnu.org
Subject: Re: bug#30239: Renaming environment "slide" to "frame"
Date: Wed, 24 Jan 2018 20:47:38 +0100
The file I modified was slides.el:
https://git.savannah.gnu.org/cgit/auctex.git/tree/style/slides.el.
Applying this modification then reinstalling AUCTeX from sources
produced the desired effect, i.e. making the default environment
prompted to be "frame" when editing a beamer file, so I assumed it was
the solution to the problem I was having. Maybe the problem comes from
the fact that slides.el shouldn't be used for beamer files?

Agathe


On 24/01/2018 19:31, Mosè Giordano wrote:
> Hi Agathe,
>
> 2018-01-24 19:10 GMT+01:00 Agathe Herrou <agathe <at> herrou.fr>:
>> Hello,
>>
>> When using AUCTeX with Beamer, the default environment when running C-c
>> C-e is "slide". As far as I know, this environment doesn't exist, and
>> the correct one is "frame". Attached is a suggested corrective.
> Thanks for your contribution, however there is no "slide" environment
> in our style file for beamer:
> https://git.savannah.gnu.org/cgit/auctex.git/tree/style/beamer.el
> Where did get that style file?
>
> Bye,
> Mosè





Information forwarded to bug-auctex <at> gnu.org:
bug#30239; Package auctex. (Wed, 24 Jan 2018 21:03:01 GMT) Full text and rfc822 format available.

Message #14 received at 30239 <at> debbugs.gnu.org (full text, mbox):

From: Arash Esbati <arash <at> gnu.org>
To: Mosè Giordano <mose <at> gnu.org>
Cc: Agathe Herrou <agathe <at> herrou.fr>, 30239 <at> debbugs.gnu.org
Subject: Re: bug#30239: Renaming environment "slide" to "frame"
Date: Wed, 24 Jan 2018 21:41:24 +0100
Mosè Giordano <mose <at> gnu.org> writes:

> 2018-01-24 19:10 GMT+01:00 Agathe Herrou <agathe <at> herrou.fr>:
>> Hello,
>>
>> When using AUCTeX with Beamer, the default environment when running C-c
>> C-e is "slide". As far as I know, this environment doesn't exist, and
>> the correct one is "frame". Attached is a suggested corrective.
>
> Thanks for your contribution, however there is no "slide" environment
> in our style file for beamer:
> https://git.savannah.gnu.org/cgit/auctex.git/tree/style/beamer.el

Hi Mosè,

looking at the manual of beamer, page 222, there is actually a "slide"
environment:

    \begin{slide}[<options>]{<frame title>}
      <environment contents>
    \end{slide}
    ...
    Example: The following two texts have the same effect:
    \begin{slide}[trans=Glitter,toc=short]{A Title}
      Hi!
    \end{slide}
    and
    \subsection{short} % omitted, if framesassubsections is not specified
    \begin{frame}[fragile=singleslide]
      \transglitter
      \frametitle{A Title}
      Hi!
    \end{frame}

So we should add it instead of removing it :-)  Do you know if Thomas is
still active?  I have never used beamer so I would have to read to
manual first before touching the style.

Best, Arash




Information forwarded to bug-auctex <at> gnu.org:
bug#30239; Package auctex. (Wed, 06 Mar 2024 09:38:02 GMT) Full text and rfc822 format available.

Message #17 received at 30239 <at> debbugs.gnu.org (full text, mbox):

From: Arash Esbati <arash <at> gnu.org>
To: Agathe Herrou <agathe <at> herrou.fr>
Cc: 30239 <at> debbugs.gnu.org
Subject: Re: bug#30239: Renaming environment "slide" to "frame"
Date: Wed, 06 Mar 2024 10:36:38 +0100
Agathe Herrou <agathe <at> herrou.fr> writes:

> Hello,
>
> When using AUCTeX with Beamer, the default environment when running C-c
> C-e is "slide". As far as I know, this environment doesn't exist, and
> the correct one is "frame". Attached is a suggested corrective.

(I'm going through old bug reports that unfortunately weren't resolved
at the time.)

beamer.el shipped with AUCTeX doesn't provide a slide environment; and
I'm not sure why you load the slides.el when you're using beamer.  I
don't see an AUCTeX issue here, therefore I'm closing this report.

Best, Arash




Added tag(s) notabug. Request was from Arash Esbati <arash <at> gnu.org> to control <at> debbugs.gnu.org. (Wed, 06 Mar 2024 09:38:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 30239 <at> debbugs.gnu.org and Agathe Herrou <agathe <at> herrou.fr> Request was from Arash Esbati <arash <at> gnu.org> to control <at> debbugs.gnu.org. (Wed, 06 Mar 2024 09:38:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 03 Apr 2024 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 22 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.