]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/accordion-discant-symbols.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / accordion-discant-symbols.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "keyboards"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Los símbolos específicos de acordeón discanto se escriben mediante
12 @code{\\markup}.  Se puede trucar la colocación vertical de los
13 símbolos modificando los argumentos de @code{\\raise}.
14
15 "
16   doctitlees = "Símbolos de acordeón discanto"
17
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   doctitlede = "Symbole für Akkordeon-Diskantregister"
21   texidocde = "
22 Diskantregister für Akkordeon können mit @code{\\markup} dargestellt werden.
23 Die vertikale Position der einzelnen Elemente werden mit @code{\\raise}
24 angepasst.
25 "
26
27   texidoc = "
28 Accordion discant-specific symbols are added using @code{\\markup}. The
29 vertical placement of the symbols can be tweaked by changing the
30 @code{\\raise} arguments.
31
32
33
34 "
35   doctitle = "Accordion-discant symbols"
36 } % begin verbatim
37
38 discant = \markup {
39   \musicglyph #"accordion.discant"
40 }
41 dot = \markup {
42   \musicglyph #"accordion.dot"
43 }
44
45 \layout { ragged-right = ##t }
46
47 % 16 voets register
48 accBasson = ^\markup {
49   \combine
50   \discant
51   \raise #0.5 \dot
52 }
53
54 % een korig 8 en 16 voets register
55 accBandon = ^\markup {
56   \combine
57     \discant
58     \combine
59       \raise #0.5 \dot
60       \raise #1.5 \dot
61 }
62
63 accVCello = ^\markup {
64   \combine
65     \discant
66     \combine
67       \raise #0.5 \dot
68       \combine
69         \raise #1.5 \dot
70         \translate #'(1 . 0) \raise #1.5 \dot
71 }
72
73 % 4-8-16 voets register
74 accHarmon = ^\markup {
75   \combine
76     \discant
77     \combine
78       \raise #0.5 \dot
79       \combine
80         \raise #1.5 \dot
81         \raise #2.5 \dot
82 }
83
84 accTrombon = ^\markup {
85   \combine
86     \discant
87     \combine
88       \raise #0.5 \dot
89       \combine
90         \raise #1.5 \dot
91         \combine
92           \translate #'(1 . 0) \raise #1.5 \dot
93           \translate #'(-1 . 0) \raise #1.5 \dot
94 }
95
96 % eenkorig 4 en 16 voets register
97 accOrgan = ^\markup {
98   \combine
99     \discant
100     \combine
101       \raise #0.5 \dot
102       \raise #2.5 \dot
103 }
104
105 accMaster = ^\markup {
106   \combine
107     \discant
108     \combine
109       \raise #0.5 \dot
110       \combine
111         \raise #1.5 \dot
112         \combine
113           \translate #'(1 . 0) \raise #1.5 \dot
114           \combine
115             \translate #'(-1 . 0) \raise #1.5 \dot
116             \raise #2.5 \dot
117 }
118
119 accAccord = ^\markup {
120   \combine
121     \discant
122     \combine
123       \raise #1.5 \dot
124       \combine
125         \translate #'(1 . 0) \raise #1.5 \dot
126         \combine
127           \translate #'(-1 . 0) \raise #1.5 \dot
128           \raise #2.5 \dot
129 }
130
131 accMusette = ^\markup {
132   \combine
133     \discant
134     \combine
135       \raise #1.5 \dot
136       \combine
137         \translate #'(1 . 0) \raise #1.5 \dot
138         \translate #'(-1 . 0) \raise #1.5 \dot
139 }
140
141 accCeleste = ^\markup {
142   \combine
143     \discant
144     \combine
145       \raise #1.5 \dot
146       \translate #'(-1 . 0) \raise #1.5 \dot
147 }
148
149 accOboe = ^\markup {
150   \combine
151     \discant
152     \combine
153       \raise #1.5 \dot
154       \raise #2.5 \dot
155 }
156
157 accClarin = ^\markup {
158   \combine
159     \discant
160     \raise #1.5 \dot
161 }
162
163 accPiccolo = ^\markup {
164     \combine
165        \discant
166        \raise #2.5 \dot
167 }
168
169 accViolin = ^\markup {
170   \combine
171     \discant
172     \combine
173       \raise #1.5 \dot
174       \combine
175         \translate #'(1 . 0) \raise #1.5 \dot
176         \raise #2.5 \dot
177 }
178
179 \relative c'' {
180   c4 d\accBasson e f
181   c4 d\accBandon e f
182   c4 d\accVCello e f
183   c4 d\accHarmon e f
184   c4 d\accTrombon e f
185   \break
186   c4 d\accOrgan e f
187   c4 d\accMaster e f
188   c4 d\accAccord e f
189   c4 d\accMusette e f
190   c4 d\accCeleste e f
191   \break
192   c4 d\accOboe e f
193   c4 d\accClarin e f
194   c4 d\accPiccolo e f
195   c4 d\accViolin e f
196 }
197