]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef-transposition-optional.ly
Doc-es: various updates.
[lilypond.git] / input / regression / cue-clef-transposition-optional.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "Optional transposition for clefs for cue notes is supported
5 by using parentheses or brackets around the transposition number."
6 }
7
8 vI = \relative { \clef "treble" \repeat unfold 40 g'4 }
9 \addQuote vIQuote { \vI }
10
11 Solo = \relative {
12   \clef "treble_8" c'1 |
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 }