Skip to content
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

LaTeX writer: support beamer overlays (take 2) #9215

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Nov 24, 2023

  1. LaTeX writer: support beamer overlays

    Pandoc elements with the `only=SPEC` attribute generate LaTeX code
    wrapped in `\begin{onlyenv}<SPEC>...\end{onlyenv}
    
    Unlike f0785a, this implementation is minimally invasive,
    and is compatible with a wide range of generated LaTeX code,
    including the `\Verb|` used by fenced code blocks.
    
    The wrapping only occurs for beamer-LaTeX output,
    never for plain LaTeX output
    lawcho committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    990fc74 View commit details
    Browse the repository at this point in the history
  2. LaTeX writer: support more beamer overlay envs

    Now `visible`, `uncover`, and `visible` are supported,
    in addition to `only`.
    
    When multiple overlay-generating attributes are provided,
    nested environments are generated (instead of a warning).
    lawcho committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    0c30c62 View commit details
    Browse the repository at this point in the history
  3. LaTeX writer: add two tests

    lawcho committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    ce30454 View commit details
    Browse the repository at this point in the history