]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef-optional-octavation.ly
Add changes entry for Mike's work on skylines (28f3294954eff1).
[lilypond.git] / input / regression / cue-clef-optional-octavation.ly
1 \version "2.17.7"
2
3 \header {
4   texidoc = "Optional octavation for clefs for cue notes is
5 supported by using parentheses or brackets around the octavation number."
6 }
7
8 vI = \relative c'' { \clef "treble" \repeat unfold 40 g4 }
9 \addQuote vIQuote { \vI }
10
11 Solo = \relative c' {
12   \clef "treble_8" c1 |
13   \cueDuringWithClef #"vIQuote" #UP #"bass^(15)" { R1 } |
14   c1 | \break
15   c c
16   \clef "bass^8" c1 |
17   \cueDuringWithClef #"vIQuote" #UP #"G_[8]" { R1 R1 } |
18   c
19   \cueDuringWithClef #"vIQuote" #UP #"treble_(8)" { R1 \break R } |
20   c
21 }
22
23 \score {
24   <<
25     \new Staff \new Voice \Solo
26   >>
27 }