Replies: 1 comment 1 reply
-
One way around it is to simply specify default parameters for // simulate a set rule
#let tablex = tablex.with(stroke: red) Or // simulate a show rule
#let old-tablex = tablex
#let tablex(..args) = {
let it = old-tablex(..args)
block(stroke: (left: red), it)
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to create a template for all tablex in my document by using
show tablex: tb => {}
, but the compiler returnsOnly element functions can be used as selectors
. How can I set a default style for my tables?Beta Was this translation helpful? Give feedback.
All reactions