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

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 

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!

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

Numérotation des versets

2024-01-27 Thread 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 instruction within the verse text with this structure in the

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 .

Numérotation des versets

2024-01-27 Thread Silvain Dupertuis
Bonjour, Y a-t-il un moyen de répéter automatiquement les numéros de versets à chaque ligne définis par  \set stanza = "1."  ... sans répéter cette instruction à l’intérieur du texte des versets avec cette structure dans la partie score, les paroles étant définies dans des variables \new