]> git.donarmstrong.com Git - lilypond.git/blob - input/test/clef-8-syntax.ly
*** empty log message ***
[lilypond.git] / input / test / clef-8-syntax.ly
1
2 \version "2.1.28"
3 \header {
4     texidoc = "@cindex Chord Octavation
5 Appending @code{_8} or @code{^8} to a clef name will
6 add an octavation sign to the clef; then the clef name 
7 is given in quotes (such as \"treble^8\").
8 " }
9
10 \score { 
11   \context Voice \notes\relative c {
12   \clef "bass_8" c4 c c c |
13   \clef "treble^8" c'''4 c c c |
14   }
15   \paper {
16     raggedright = ##t
17   }  
18   \midi { }
19 }
20
21