]> git.donarmstrong.com Git - lilypond.git/blob - input/test/manual-clef.ly
Marked file for deletion, or just modified comments.
[lilypond.git] / input / test / manual-clef.ly
1 \version "1.7.18"
2 % possible rename to clef-manual-control
3 \header{ texidoc = "@cindex Clef Manual Control
4 You can use the clef engraver by setting \property directly.  \clef
5 is merely a front-end to this. " }
6
7 \score { \notes {
8   \property Staff.clefGlyph = #"clefs-F"
9   \property Staff.clefPosition = #2
10   c'4
11   \property Staff.clefGlyph = #"clefs-G"
12   c'4
13   \property Staff.clefGlyph = #"clefs-C"
14
15   c'4
16         \property Staff.clefOctavation = #7 
17   c'4
18         \property Staff.clefOctavation = #0 
19         \property Staff.clefPosition = #0
20   c'4
21         \clef "bass"
22   c'4
23
24 }
25         \paper{ raggedright = ##t }
26 }
27 %% new-chords-done %%