-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add capability to bypass beamer frame in section slides not just for "notes" slides #8118
Comments
Perhaps we could implement
It's a bit clunky, though, because it is hard to know what to do with this if someone puts it under a slide-level heading, in the middle of other content. |
Thank you so much for such prompt follow up despite the current heavy flow on the list and the many other tasks you will be busy with. If I am not mistaken, may I kindly suggest that The beamer userguide section 21.3 Details on Modes suggests 3 modes:
It would be absolutely awesome to be able to access all 3. Note that the beamer userguide section 19.1 Specifying Note Contents highlihgted that "the many thanks |
Perhaps the most straightforward syntax would be
Pandoc could then translate that to
or maybe to
if we could figure out originalmode. (Is there a macro that returns the current mode?) We'd also have to ensure that this doesn't go into a slide. |
This would seem good, unfortunately, the "... During a When
In addition to these modes,
You can use the
Recall that a ..." many thanks, really appreciate the effort to enhance this part of the already awesome |
Oh yes, I read that already. So, what part of my proposal doesn't fit with this? |
Sorry, I am really the wrong person to ask... |
Before Pandoc 2.7, choosing slide_level: 3 meant that ### was needed to create a slide. This commit jgm@5990f14 caused this desired behavior to no longer be true and content above slide level is automatically included onto a slide, to accommodate compatibility with reveal.js format. At JGM's request, who could not think of a quick fix at the time, I posted a request on https://groups.google.com/g/pandoc-discuss/c/joqekZQRpq8, but no resolution was suggested. This suggested simple 1 extra line change fixes these issues jgm#8118 and jgm#4317. Thank you in advance for entertaining this suggestion.
I would like to follow up with the resolution provided in #7857 and this issue I raised please: #4317 (comment)
At the time, jgm responded on Aug 23, 2019:
and concluded with:
It's been a couple of years now and a solution was found for another user in a nearly identical situation: here and here.
Basically the src/Text/Pandoc/Writers/LaTeX.hs code was enhanced to include:
Now any above slide level content starting with
::: notes
will not be added onto a slide.Is it possible to add a couple more lines to entertain my use case as well please? In line with the beamer userguide section 21.3 Details on Modes, the
\mode
command controls what part of your text belongs to which mode. It is to be specified outside frames. This is a key feature for controlling howbeamer
behaves.Therefore, my hope is to be able to escape a command such as
\mode<presentation>
(just like::: notes
) and not have it forced onto a slide please. To achieve this, would the code need to be wrapped in a```{=beamer}
command or would it be possible to escape it directly please?Many thanks in advance. thomas
The text was updated successfully, but these errors were encountered: