]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / cue-clef.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "Clefs for cue notes: Print a cue clef at the begin of the cue
5 notes and a canceling clef after the cue notes."
6 }
7
8 vI = \relative { \clef "treble" \repeat unfold 16 g'4 }
9 \addQuote vIQuote { \vI }
10
11 Solo = \relative {
12   \clef "bass"
13   c4 \cueDuringWithClef #"vIQuote" #DOWN #"treble" {
14     r4 r2 |
15     r4
16   } c4 c2 |
17   \cueDuringWithClef #"vIQuote" #DOWN "soprano" { R1*2 } |
18   c1
19 }
20
21 \score {
22   <<
23     \new Staff \new Voice \Solo
24   >>
25 }