]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/accordion-registers.ly
Imported Upstream version 2.18.0
[lilypond.git] / Documentation / snippets / new / accordion-registers.ly
1 \version "2.17.23"
2
3 \header {
4   lsrtags = "keyboards, specific-notation, symbols-and-glyphs"
5
6   texidoc = "Accordion register symbols are available as
7 @code{\\markup} as well as as standalone music events (as register
8 changes tend to occur between actual music events.  Bass registers are
9 not overly standardized.  The available commands can be found in
10 @ruser{Accordion Registers}."
11
12   doctitle = "Accordion register symbols"
13 }
14
15 \layout { ragged-right = ##t }
16
17 #(use-modules (scm accreg))
18
19 \new PianoStaff
20 <<
21   \new Staff \relative
22   { \clef treble \discant "10" r8 s32 f'[ bes f] s e[ a e] s d[ g d] s16 e32[ a]
23     << { r16 <f bes> r <e a> r <d g> } \\ { d r a r bes r } >> | <cis e a>1 }    
24   \new Staff \relative
25   { \clef treble \freeBass "1" r8 d'32 s16. c32 s16. bes32 s16. a32[ cis] s16
26     \clef bass \stdBass "Master"
27     << { r16 <f, bes d>^"b" r <e a c>^"am" r <d g bes>^"gm" |
28          <e a cis>1^"a" } \\
29        { d8_"D" c_"C" bes_"B" | a1_"A" }
30      >>
31   }
32 >>