PgBiel

Results 402 comments of PgBiel

I'm guessing this wouldn't be so trivial to fix, as this behavior could be legitimate - for example, this would make perfect sense for a numbering of `(1.a)`. Perhaps this...

I made a quick patch in https://github.com/PgBiel/typst/tree/numbering-fix to demonstrate this. (Note that this is just a prototype, not supposed to turn into a PR or anything at the moment.) It...

Regardless of where this goes, here's a solution to your particular case: ```rust #set enum(full: true, numbering: (..nums) => { let midmarker = "." let endmarker = ")" let nums_len...

Regarding my workaround, here's an updated version with letters instead of numbers at the second level (and beyond): ```rust #set enum(full: true, numbering: (..nums) => { let midmarker = "."...

Or, to only show the last level on each line: (note that `full: true` is necessary to receive the full list of numbers on the function) ```rust #set enum(full: true,...

This is related to #3150, but I'll note that the show rule is inherently wrong, as in principle joining `enum.item` together creates a new `enum`, so the show rule is...

In the meantime, you can use this package: https://github.com/PgBiel/typst-oxifmt

I'm not sure I understand. By resetting on each page, it is doing so automatically, that is, without your intervention. It's true that you can't do it manually at the...

0.11.1 did not support exporting emoji to PDF, whereas 0.12 now does, so you're seeing your system's emoji font being used for the emoji character being used. You could try...

This is not in the spec[^1]. Though this isn't the first time there was a request to add something not supported by CSL (also see #24). However, I found this...