ruby-typ
ruby-typ copied to clipboard
a library to implement ruby for typst language
添付画像のように、親文字(漢字)よりもルビが長くなる場合、下線が途切れてしまいます。 #underline[私は]#ruby[プラクティス][#underline[練習]]#underline[する] 
[Typst 13.0 removed the style function as a breaking change.](https://typst.app/docs/changelog/0.13.0#removals) This doesn't compile on Typst 13
With applying the below code to content, a underlined text's rubby gets underlined as well as main text. ``` #let emphasis(content) = { highlight( fill: rgb(223, 255, 50), top-edge: 0.3em...
In my Typst template I specified a `2em` `first-line-indent` for each paragraph with `all: true` specified. ```typst #set par(first-line-indent: (amount: 2em, all: true)) ``` However, when using the `rubby` package,...