]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef-octavation.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / cue-clef-octavation.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "Octavation for clefs for cue notes."
5 }
6
7 vI = \relative c'' { \clef "treble" \repeat unfold 40 g4 }
8 \addQuote vIQuote { \vI }
9
10 Solo = \relative c' {
11   \clef "treble_8" c1 |
12   \cueDuringWithClef #"vIQuote" #UP #"bass^8" { R1 } |
13   c1 | \break
14   c c
15   \clef "bass^8" c1 |
16   \cueDuringWithClef #"vIQuote" #UP #"treble_8" { R1 R1 } |
17   c
18   \cueDuringWithClef #"vIQuote" #UP #"treble_8" { R1 \break R } |
19   c
20 }
21
22 \score {
23   <<
24     \new Staff \new Voice \Solo
25   >>
26 }