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