PgBiel

Results 402 comments of PgBiel

Found this long thread here: https://github.com/retorquere/zotero-better-bibtex/issues/2802 Which links to some other places which also seem to be using `scriptwriter`. However, what I can tell for this is that the real...

I think I'd prefer getting https://github.com/typst/typst/issues/3640 to work first before attempting this, as it'd be logical to add all other table cell fields if we add just align, and I'm...

> I suppose the easiest way is to just use DecNum::Float(a / b) in both the integer and float case We shouldn't do this to avoid violating precision guarantees. We...

Could also play with the idea of allowing `1fr`, `2fr` syntax.

I am, however, unsure if this is feasible for rows, as theoretically there are unlimited rows. Could perhaps restrict that to a single page.

Yeah, I wanted to add this when adding support for `decimal`, but ended up not having the time. This would indeed be nice though.

This is consistent with Rust, which we base ourselves on, with which you'd need to convert to a float for it to behave as a float: https://play.rust-lang.org/?version=stable&mode=debug&edition=2024&code=fn+main%28%29+%7B%0A++++println%21%28%22a+%7B%3A.3%7D+b%22%2C+1%29%3B%0A++++println%21%28%22a+%7B%3A.3%7D+b%22%2C+1.0%29%3B%0A%7D In your case...

Do you mean something like a "max-digits" option? And would this have rounding or not (or configurable)?

Worth mentioning that one workaround (if you know the amount of pages beforehand) is to write `*19* #colbreak() *19*` (for example). This is definitely something we want to eventually support...