]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / cue-clef.ly
1 \version "2.16.0"
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 c'' { \clef "treble" \repeat unfold 16 g4 }
9 \addQuote vIQuote { \vI }
10
11 Solo = \relative c {
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 }