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