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, Luk

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) signatu

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 https://scheme-b

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 https://scheme-book.readthedocs.io/en/latest/scheme/data-t

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 vol

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. You

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 o

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 \fon

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 Score.repeatCo

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 correctly.

2.25.2 optional fine endings

2023-03-11 Thread Paul Scott
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 correctly. \version "2.25.2" voltaFine = \markup { \text \upright \fontsize #2 "Fine Ending" } voltaCont = \markup { \text \upright

2.25.2 ending brackets for optional fine endings

2023-03-09 Thread Paul Scott
How can I find the documentation for optional sections with brackets and text above similar to \alternative.  There are no repeats involved. Thank you, Paul

Re: Fine endings

2013-05-25 Thread Pierre Perol-Schneider
2013/5/25 Paul Scott > I am having trouble finding in the 2.17.18 docs how to create a pair of > endings: > > 1.Fine > | || || > > I'm not sure what you're looking at... This could help : http://lilypond.org/doc/v2.17/Documentation/snippets/repeats#repeats-volta-text-markup-usi

Re: Fine endings

2013-05-25 Thread Paul Scott
On Sat, May 25, 2013 at 03:11:54PM -0400, Carl Peterson wrote: > Paul, > > If I'm understanding your question correctly, there is no way I know of to > "structurally" define a Fine ending (i.e., to where you could "unfold it" > automatically like with volta repeats). All the documentation I've see

Re: Fine endings

2013-05-25 Thread Carl Peterson
Paul, If I'm understanding your question correctly, there is no way I know of to "structurally" define a Fine ending (i.e., to where you could "unfold it" automatically like with volta repeats). All the documentation I've seen says you "cosmetically" define it using rehearsal marks and a bit of tw

Fine endings

2013-05-25 Thread Paul Scott
I am having trouble finding in the 2.17.18 docs how to create a pair of endings: 1.Fine | || || This will be associated with a D.S. al Fine. I have read everything in 1.4 Repeats and spent some time with the big HTML version of the Notation manual. Segno and sign and ending(