Skip to content
Discussion options

You must be logged in to vote

Thanks, I was able to use a Lua post-render script to make it work.
(For anyone reading this from the future, the only thing this script has to do in my case is replace instances of blocks like these

#let (corollary-counter, corollary-box, corollary, show-corollary) = make-frame(
  "corollary",
  text(weight: "bold")[Corollaire],
  inherited-levels: theorem-inherited-levels,
  numbering: theorem-numbering,
  render: simple-theorem-render,
)
#show: show-corollary

with

#let (corollary-counter, corollary-box, corollary, show-corollary) = make-frame(
  "theorem",
  text(weight: "bold")[Corollaire],
  inherited-levels: theorem-inherited-levels,
  numbering: theorem-numbering,
  render: simple…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@csarr
Comment options

Answer selected by csarr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
2 participants