Re: Suppress Volta Starting Repeat

2019-08-26 Thread keith Luke
I solved the problem. I misinterpreted how the \set Score.voltaSpannerDuration = #(ly:make-moment 4/4) is used. I originally coded a start-repeat at the beginning of the first ending. By adjusting the grouping of notes in the \repeat volta section for the first ending the score renders as

Re: Suppress Volta Starting Repeat

2019-08-26 Thread Aaron Hill
On 2019-08-26 12:28 pm, keith Luke wrote: I would like to suppress the repeat sign in the measure preceding the first ending. You should be able to explicitly specify the bar line using the \bar command: \repeat volta 2 { \bar "|" g1~ } But the question I have is: why would

Re: Suppress Volta Starting Repeat

2019-08-26 Thread Simon Albrecht
Hi Keith, On 26.08.19 21:28, keith Luke wrote: I am using LilyPond 2.18.2   \set Score.voltaSpannerDuration = #(ly:make-moment 4/4)   \repeat volta 2 { g1 ~ }   \alternative {     {       g4 r8 g8 d'4 c4 ~     }     {{ g2 \repeatTie r2 }} That is not a complete, compilable, minimal example.

Re: Suppress Volta Starting Repeat

2019-08-26 Thread keith Luke
I am using LilyPond 2.18.2 \set Score.voltaSpannerDuration = #(ly:make-moment 4/4) \repeat volta 2 { g1 ~ } \alternative { { g4 r8 g8 d'4 c4 ~ } {{ g2 \repeatTie r2 }} Here is the PDF rendering of the \repeat volta statements: [image: VoltaRepeat.JPG] I would like to

Re: Suppress Volta Starting Repeat

2019-08-26 Thread Malte Meyn
Am 26.08.19 um 03:22 schrieb keith Luke: Is it possible to suppress the a volta starting repeat? Yes, that should be possible. The following code generates a repeat in front of the g1. No, it doesn’t. Please always give a minimal *working* (i. e. compilable) example. Which LilyPond

Suppress Volta Starting Repeat

2019-08-26 Thread keith Luke
Is it possible to suppress the a volta starting repeat? The following code generates a repeat in front of the g1. \set Score.voltaSpannerDuration = #(ly:make-moment 4/4) \repeat volta 2 { g1 ~ } \alternative { { g4 r8 g8 d'4 c4 ~ } {{ g2 \repeatTie r2 }} As an