lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cues in multimeasure rest


From: Josiah Boothby
Subject: Re: cues in multimeasure rest
Date: Tue, 21 Sep 2004 12:40:30 -0700

http://students.washington.edu/josiah/lilypond/cuetest-page1.png

with a couple extra things to sort out (rehearsal mark and markup
overlapping with the slur), this is one way to do it:

\version "2.2.6"

\header {
        title = "cuetest"
}

cueOn = \notes {
        \set Staff.fontSize = #-2
        \override Stem #'length = #5.5
        \override Beam #'thickness = #0.384
        \override Beam #'space-function =
          #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
}

cueOff = \notes {
        \set Staff.fontSize = #0
        \revert Stem #'length
        \revert Beam #'thickness
        \revert Beam #'space-function
}

\score { 
        \notes \relative c {
                \set Score.markFormatter = #format-mark-numbers
                \set Score.skipBars = ##t
                \clef bass
                \time 4/4
                \mark #95
                R1*8 
                \mark #96 
                R1*7 \clef violin \bar ""
                << 
                        {
                                \cadenzaOn \stemBoth \cueOn 
                                c'''32(\ff^\markup {Clar} b bes f 
                                \cadenzaOff \bar "|" 
                                \once \override RehearsalMark #'padding = #25 
                                \mark #97 \noBreak
                                c16) aes f8 r4 r4 r8 aes'32( g ges des) \cueOff
                        } \\ {
                                s8 R1 
                        } 
                >>
        }
        
        \paper {
                linewidth = 7.5 \in
        }
}

On Tue, 2004-09-21 at 16:57 +0000, David Bobroff wrote:
> What is the best way to do this:
> 
> http://notendur.centrum.is/~bobroff/rest-cue.jpg
> 
> It is a multimeasure rest with some cue notes stuck in at the end.  To
> the performer they obviously belong to the end of the final measure of
> the multimeasure rest.  The first, indeed the only, thing that comes to
> mind is to put in a measure that fits the duration of the cues and make
> the barline/time signature invisible before the cues so that it ends up
> looking like the example above.  Any better ideas?
> 
> -David
> 
> 
> 
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> http://lists.gnu.org/mailman/listinfo/lilypond-user





reply via email to

[Prev in Thread] Current Thread [Next in Thread]