]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef-manually.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / cue-clef-manually.ly
1 \version "2.19.21"
2
3 Solo = \relative { 
4   c'4 c c c |
5
6   % Manually written cue notes, not quoted from another lilypond voice:
7   << 
8     { \voiceTwo R1 \oneVoice }
9     \new CueVoice 
10     {
11       \cueClef "bass"
12       \voiceOne
13       c4 c c c |
14       \cueClefUnset 
15     }
16   >>
17   c4 c c c |
18 }
19
20 \score {
21   <<
22     \new Staff \Solo
23   >>
24 }