Re: 2.25.2 optional fine endings

2023-03-13 Thread Paul Scott
On 3/13/23 1:25 PM, Jean Abou Samra wrote: Le lundi 13 mars 2023 à 13:04 -0700, Paul Scott a écrit : I've read your wonderful scheme documentation.  I'm still struggling to make sense of Aaron's simple code \fixed c' {    c1    \set Score.repeatCommands = #|((volta ,voltaFine)) c4 d c2 \bar

Re: 2.25.2 optional fine endings

2023-03-13 Thread Jean Abou Samra
Le lundi 13 mars 2023 à 13:04 -0700, Paul Scott a écrit : > I've read your wonderful scheme documentation.  I'm still struggling to > make sense of Aaron's simple code > \fixed c' { >    c1 >    \set Score.repeatCommands = #`((volta ,voltaFine)) >    c4 d c2 \bar

Re: 2.25.2 optional fine endings

2023-03-13 Thread Paul Scott
On 3/13/23 11:26 AM, Jean Abou Samra wrote: Le lundi 13 mars 2023 à 11:05 -0700, Paul Scott a écrit : On 3/13/23 10:51 AM, Jean Abou Samra wrote: Le lundi 13 mars 2023 à 10:47 -0700, Paul Scott a écrit : It seems like I need to know where repeatCommands is documented. Use the index,

Re: 2.25.2 optional fine endings

2023-03-13 Thread Jean Abou Samra
Le lundi 13 mars 2023 à 11:05 -0700, Paul Scott a écrit : > > On 3/13/23 10:51 AM, Jean Abou Samra wrote: > > > > Le lundi 13 mars 2023 à 10:47 -0700, Paul Scott a écrit : > > > > > > > It seems like I need to know where repeatCommands is documented. > > > > > > > Use the index, Luke! > >

Re: 2.25.2 optional fine endings

2023-03-13 Thread Paul Scott
On 3/13/23 10:51 AM, Jean Abou Samra wrote: Le lundi 13 mars 2023 à 10:47 -0700, Paul Scott a écrit : It seems like I need to know where repeatCommands is documented. Use the index, Luke! https://lilypond.org/doc/v2.24/Documentation/notation/lilypond-index That's exactly what I did.  It

Re: 2.25.2 optional fine endings

2023-03-13 Thread Jean Abou Samra
Le lundi 13 mars 2023 à 10:47 -0700, Paul Scott a écrit : > It seems like I need to know where repeatCommands is documented. Use the index, Luke! [https://lilypond.org/doc/v2.24/Documentation/notation/lilypond-index](https://lilypond.org/doc/v2.24/Documentation/notation/lilypond-index)

Re: 2.25.2 optional fine endings

2023-03-13 Thread Paul Scott
On 3/13/23 1:36 AM, Aaron Hill wrote: On 2023-03-13 12:57 am, Jean Abou Samra wrote: Le 13 mars 2023 à 06:24, Paul Scott a écrit : What I'm not sure about is what volta does.  A function but what are its arguments and what does it do? Nope, since it’s quoted, it doesn’t get evaluated but

Re: 2.25.2 optional fine endings

2023-03-13 Thread Aaron Hill
On 2023-03-13 12:57 am, Jean Abou Samra wrote: Le 13 mars 2023 à 06:24, Paul Scott a écrit : What I'm not sure about is what volta does. A function but what are its arguments and what does it do? Nope, since it’s quoted, it doesn’t get evaluated but remains a symbol. See

Re: 2.25.2 optional fine endings

2023-03-13 Thread Jean Abou Samra
> Le 13 mars 2023 à 06:24, Paul Scott a écrit : > > What I'm not sure about is what volta does. A function but what are its > arguments and what does it do? Nope, since it’s quoted, it doesn’t get evaluated but remains a symbol. See

Re: 2.25.2 optional fine endings

2023-03-12 Thread Paul Scott
On 3/12/23 12:25 AM, Aaron Hill wrote: On 2023-03-11 11:04 pm, Paul Scott wrote: On 3/11/23 11:40 PM, Aaron Hill wrote: On 2023-03-11 10:34 pm, Paul Scott wrote: This still gives the warning and I don't want any repeats there. As the warning is indicating, you are trying to start a new

Re: 2.25.2 optional fine endings

2023-03-11 Thread Aaron Hill
On 2023-03-11 11:04 pm, Paul Scott wrote: On 3/11/23 11:40 PM, Aaron Hill wrote: On 2023-03-11 10:34 pm, Paul Scott wrote: This still gives the warning and I don't want any repeats there. As the warning is indicating, you are trying to start a new volta bracket when one already exists.

Re: 2.25.2 optional fine endings

2023-03-11 Thread Paul Scott
On 3/11/23 11:40 PM, Aaron Hill wrote: On 2023-03-11 10:34 pm, Paul Scott wrote: This still gives the warning and I don't want any repeats there. As the warning is indicating, you are trying to start a new volta bracket when one already exists. You need to explicitly terminate the first

Re: 2.25.2 optional fine endings

2023-03-11 Thread Aaron Hill
On 2023-03-11 10:34 pm, Paul Scott wrote: This still gives the warning and I don't want any repeats there. As the warning is indicating, you are trying to start a new volta bracket when one already exists. You need to explicitly terminate the first one when you are using repeatCommands:

Re: 2.25.2 optional fine endings

2023-03-11 Thread Paul Scott
Thank you for your quick reply. This still gives the warning and I don't want any repeats there. Paul On 3/11/23 11:17 PM, Pierre Perol-Schneider wrote: Hi Paul, Try: \version "2.25.0" voltaFine = \markup { \text \upright \fontsize #2 "Fine Ending" } voltaCont = \markup { \text \upright

Re: 2.25.2 optional fine endings

2023-03-11 Thread Pierre Perol-Schneider
Hi Paul, Try: \version "2.25.0" voltaFine = \markup { \text \upright \fontsize #2 "Fine Ending" } voltaCont = \markup { \text \upright \fontsize #2 "To Cont." } \fixed c' { c1 \set Score.repeatCommands = #(list(list 'volta voltaFine) 'start-repeat) c4 d c2 \bar "|." \set

Re: 2.25.2 optional fine endings

2023-03-11 Thread Paul Scott
The warning is: warning: already have a volta spanner, ending that one prematurely On 3/11/23 9:49 PM, Paul Scott wrote: The following code derived from NR 1.4.1 "Manual repeats" does what I want but gives a warning.  I don't understand the code or documentation well enough to do it