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