Re: Numérotation des versets

2024-01-27 Thread Jean Abou Samra
Try the code here? https://lists.gnu.org/archive/html/lilypond-user/2022-04/msg00036.html Best, Jean signature.asc Description: This is a digitally signed message part

Re: Numérotation des versets

2024-01-27 Thread Michael Werner
Hi there, On Sat, Jan 27, 2024 at 6:35 AM Silvain Dupertuis < silvain-dupert...@bluewin.ch> wrote: > *Sorry for my question in French on an English-speaking forum... here is > an Englsh version* > > Hello, > Is there a way to automatically repeat the verse numbers on each line > when it is define

Re: Numérotation des versets

2024-01-27 Thread David Kastrup
Silvain Dupertuis writes: > Thanks for the suggestion. > > This does provide a nice automatic numbering ... > but does not repeat the verse number on subsequent lines. > > But I did recycle your suggestion using a modified function with one paramater > > #(define nextcountstanza >    (let  ((coun

Re: Numérotation des versets

2024-01-27 Thread Silvain Dupertuis
Thanks for the suggestion. This does provide a nice automatic numbering ... but does not repeat the verse number on subsequent lines. But I did recycle your suggestion using a modified function with one paramater #(define nextcountstanza    (let  ((counter 0)) (lambda (x)    (set! coun

Re: Numérotation des versets

2024-01-27 Thread Lukas-Fabian Moser
Hi Silvain, Am 27.01.24 um 11:12 schrieb Silvain Dupertuis: /Sorry for my question in French on an English-speaking forum... here is an Englsh version/ Hello, Is there a way to automatically repeat the verse numbers on each line when it is defined by \set stanza = "1." without repeating this

Re: Numérotation des versets

2024-01-27 Thread Ya Gloops
Hello ! Maybe... #(define nextcountstanza    (let  ((counter 0))      (lambda ()        (set! counter (1+ counter))        (string-append ( number->string counter)"." \new Lyrics \lyricsto "VoiceOne" { \set stanza = #(nextcountstanza)  \VerseOne } \new Lyrics \lyricsto "VoiceOne" { \set sta

Re: Numérotation des versets

2024-01-27 Thread Jean Abou Samra
Hello, This is the English-speaking list. You probably meant to send this to the French forum, user-fr@lilypond.community .