andreasKroepelin / polylux

A package for creating slides in Typst
https://polylux.dev/book
MIT License
1.18k stars 55 forks source link

Cannot create more than 10 alternatives #173

Open benruijl opened 5 months ago

benruijl commented 5 months ago

Showing more than 10 alternatives does not work:

#slide(title: "Test")[
    #alternatives[1][2][3][4][5][6][7][8][9][10][11]
]

will only generate slides from 1 up to 10.

Setting max-repetitions does not make the 11 appear:

#slide(title: "Test")[
     #polylux-slide(max-repetitions: 15)[
        #alternatives[1][2][3][4][5][6][7][8][9][10][11]
     ]
]
andreasKroepelin commented 5 months ago

This should be fixed on the main branch. Reminding me of how long there hasn't been a release 🫣

TheZoq2 commented 2 months ago

I trigger this regularly, could we perhaps get a release so I don't have to depend on a git version?