I sometimes have very bulky results I need to display in Touying slides. One way I try and mitigate just displaying massive block of texts is to display them incrementally. However, if I try and do this inside Theorion environments, I instead get panics. With the example:
#import "@preview/touying:0.7.3": *
#import themes.university: *
#import "@preview/numbly:0.1.0": numbly
#import "@preview/theorion:0.6.0": *
#import cosmos.clouds: *
#show: show-theorion
#show: university-theme.with(
aspect-ratio: "16-9",
config-common(frozen-counters: (theorem-counter,)), // freeze theorem counter for animation
)
= test
#proposition[
The formula:
#pause
]
I get the error:
error: panicked with: "Unsupported mark `touying-jump/pause/meanwhile` at page 2. You can't use it inside some functions like `context`. You may want to use the callback-style `uncover` function instead."
ββ @preview/touying:0.7.3/src/configs.typ:66:8
β
66 β β panic(
67 β β "Unsupported mark `"
68 β β + kind
69 β β + "` at page "
70 β β + str(page-num)
71 β β + ". You can't use it inside some functions like `context`. You may want to use the callback-style `uncover` function instead.",
72 β β )
β β°βββββββββ^
Meanwhile, trying to follow the errorβs advice and use uncover:
#slide(repeat: 3)[
#proposition[
The formula
$
#uncover("2-")[]
$
]
]
results in the error:
error: panicked with: "Unsupported mark `touying-fn-wrapper` at page 2. You can't use it inside some functions like `context`. You may want to use the callback-style `uncover` function instead."
ββ @preview/touying:0.7.3/src/configs.typ:66:8
β
66 β β panic(
67 β β "Unsupported mark `"
68 β β + kind
69 β β + "` at page "
70 β β + str(page-num)
71 β β + ". You can't use it inside some functions like `context`. You may want to use the callback-style `uncover` function instead.",
72 β β )
β β°βββββββββ^
Is there any way to break up content inside Theorion environments for incremental display in Touying?