]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/accordion-discant-symbols.ly
fa75b68e40b27b4444bad034a1bc4795f15cbeac
[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.14.2"
8
9 \header {
10   lsrtags = "specific-notation, keyboards, workaround, symbols-and-glyphs"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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
42 discant = \markup {
43   \musicglyph #"accordion.discant"
44 }
45 dot = \markup {
46   \musicglyph #"accordion.dot"
47 }
48
49 \layout { ragged-right = ##t }
50
51 % 16 voets register
52 accBasson = ^\markup {
53   \combine
54   \discant
55   \raise #0.5 \dot
56 }
57
58 % een korig 8 en 16 voets register
59 accBandon = ^\markup {
60   \combine
61     \discant
62     \combine
63       \raise #0.5 \dot
64       \raise #1.5 \dot
65 }
66
67 accVCello = ^\markup {
68   \combine
69     \discant
70     \combine
71       \raise #0.5 \dot
72       \combine
73         \raise #1.5 \dot
74         \translate #'(1 . 0) \raise #1.5 \dot
75 }
76
77 % 4-8-16 voets register
78 accHarmon = ^\markup {
79   \combine
80     \discant
81     \combine
82       \raise #0.5 \dot
83       \combine
84         \raise #1.5 \dot
85         \raise #2.5 \dot
86 }
87
88 accTrombon = ^\markup {
89   \combine
90     \discant
91     \combine
92       \raise #0.5 \dot
93       \combine
94         \raise #1.5 \dot
95         \combine
96           \translate #'(1 . 0) \raise #1.5 \dot
97           \translate #'(-1 . 0) \raise #1.5 \dot
98 }
99
100 % eenkorig 4 en 16 voets register
101 accOrgan = ^\markup {
102   \combine
103     \discant
104     \combine
105       \raise #0.5 \dot
106       \raise #2.5 \dot
107 }
108
109 accMaster = ^\markup {
110   \combine
111     \discant
112     \combine
113       \raise #0.5 \dot
114       \combine
115         \raise #1.5 \dot
116         \combine
117           \translate #'(1 . 0) \raise #1.5 \dot
118           \combine
119             \translate #'(-1 . 0) \raise #1.5 \dot
120             \raise #2.5 \dot
121 }
122
123 accAccord = ^\markup {
124   \combine
125     \discant
126     \combine
127       \raise #1.5 \dot
128       \combine
129         \translate #'(1 . 0) \raise #1.5 \dot
130         \combine
131           \translate #'(-1 . 0) \raise #1.5 \dot
132           \raise #2.5 \dot
133 }
134
135 accMusette = ^\markup {
136   \combine
137     \discant
138     \combine
139       \raise #1.5 \dot
140       \combine
141         \translate #'(1 . 0) \raise #1.5 \dot
142         \translate #'(-1 . 0) \raise #1.5 \dot
143 }
144
145 accCeleste = ^\markup {
146   \combine
147     \discant
148     \combine
149       \raise #1.5 \dot
150       \translate #'(-1 . 0) \raise #1.5 \dot
151 }
152
153 accOboe = ^\markup {
154   \combine
155     \discant
156     \combine
157       \raise #1.5 \dot
158       \raise #2.5 \dot
159 }
160
161 accClarin = ^\markup {
162   \combine
163     \discant
164     \raise #1.5 \dot
165 }
166
167 accPiccolo = ^\markup {
168     \combine
169        \discant
170        \raise #2.5 \dot
171 }
172
173 accViolin = ^\markup {
174   \combine
175     \discant
176     \combine
177       \raise #1.5 \dot
178       \combine
179         \translate #'(1 . 0) \raise #1.5 \dot
180         \raise #2.5 \dot
181 }
182
183 \relative c'' {
184   c4 d\accBasson e f
185   c4 d\accBandon e f
186   c4 d\accVCello e f
187   c4 d\accHarmon e f
188   c4 d\accTrombon e f
189   \break
190   c4 d\accOrgan e f
191   c4 d\accMaster e f
192   c4 d\accAccord e f
193   c4 d\accMusette e f
194   c4 d\accCeleste e f
195   \break
196   c4 d\accOboe e f
197   c4 d\accClarin e f
198   c4 d\accPiccolo e f
199   c4 d\accViolin e f
200 }
201