]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/accordion-registers.ly
Imported Upstream version 2.18.2
[lilypond.git] / Documentation / snippets / accordion-registers.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.17.23
8 \version "2.17.23"
9
10 \header {
11   lsrtags = "keyboards, specific-notation, symbols-and-glyphs"
12
13   texidoc = "Accordion register symbols are available as
14 @code{\\markup} as well as as standalone music events (as register
15 changes tend to occur between actual music events.  Bass registers are
16 not overly standardized.  The available commands can be found in
17 @ruser{Accordion Registers}."
18
19   doctitle = "Accordion register symbols"
20 } % begin verbatim
21
22
23 \layout { ragged-right = ##t }
24
25 #(use-modules (scm accreg))
26
27 \new PianoStaff
28 <<
29   \new Staff \relative
30   { \clef treble \discant "10" r8 s32 f'[ bes f] s e[ a e] s d[ g d] s16 e32[ a]
31     << { r16 <f bes> r <e a> r <d g> } \\ { d r a r bes r } >> | <cis e a>1 }
32   \new Staff \relative
33   { \clef treble \freeBass "1" r8 d'32 s16. c32 s16. bes32 s16. a32[ cis] s16
34     \clef bass \stdBass "Master"
35     << { r16 <f, bes d>^"b" r <e a c>^"am" r <d g bes>^"gm" |
36          <e a cis>1^"a" } \\
37        { d8_"D" c_"C" bes_"B" | a1_"A" }
38      >>
39   }
40 >>