]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/cue-clef-manually.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / cue-clef-manually.ly
1 \version "2.16.0"
2
3 Solo = \relative c' { 
4   c4 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 }