]> git.donarmstrong.com Git - lilypond.git/blob - input/test/clef-manual-control.ly
*** empty log message ***
[lilypond.git] / input / test / clef-manual-control.ly
1 \version "2.1.28"
2 \header{ texidoc = "
3
4 @cindex Clef Manual Control
5
6 The positioning of glyph and note can be separated. @code{\clef} is 
7 a front-end, which keeps them together. All the notes in this example 
8 are central C."
9
10 }
11
12 \score { \notes {
13   \set Staff.clefGlyph = #"clefs-F"
14   \set Staff.clefPosition = #2
15   c'4
16   \set Staff.clefGlyph = #"clefs-G"
17   c'4
18   \set Staff.clefGlyph = #"clefs-C"
19
20   c'4
21         \set Staff.clefOctavation = #7 
22   c'4
23         \set Staff.clefOctavation = #0 
24         \set Staff.clefPosition = #0
25   c'4
26         \clef "bass"
27   c'4
28
29 }
30         \paper{ raggedright = ##t }
31 }
32