We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SlydifiOverlay
The current version has the following conditional functions. IMO some of them should be renamed.
only n
n-layer == n
elsewhen n
not (only n)
negate : ('a -> bool) -> 'a -> bool
till n
n-layer <= n
until
\untilSlide
after n
n-layer >= n
from
n-layer > n
during m n
(n-layer >= m) && (n-layer <= n)
between
in-case nlst
nlst
n-layer
on-slides
The text was updated successfully, but these errors were encountered:
Thank you so much for your suggestion! We have included the changes you mentioned in the v0.4.0 release.
Sorry, something went wrong.
No branches or pull requests
The current version has the following conditional functions.
IMO some of them should be renamed.
only n
n-layer == n
elsewhen n
not (only n)
negate : ('a -> bool) -> 'a -> bool
till n
n-layer <= n
until
to align with Beamer which has\untilSlide
after n
n-layer >= n
from
because “after” is non-inclusive (n-layer > n
)during m n
(n-layer >= m) && (n-layer <= n)
between
because it's more typical.in-case nlst
nlst
includes the current layer numbern-layer
on-slides
The text was updated successfully, but these errors were encountered: