]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/score-for-diatonic-accordion.ly
Issue 4422/5: Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / score-for-diatonic-accordion.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.19.22"
8
9 \header {
10   lsrtags = "real-music, specific-notation, template"
11
12   texidoc = "
13 A template to write a score for a diatonic accordion.
14
15 - There is a horizontal staff indicating if the accordion must be
16 pushed (thick line) or pulled (thin line)
17
18 - There is a small rhythmic staff with lyrics that describes the bass
19 buttons to press. The bar lines are made from gridlines
20
21 - The tabulator staff for diatonic accordions shows the geographic
22 position of the buttons and not (as for every other instrument) the
23 pitch of the notes; the keys on the melody-side of the accordion are
24 placed in three columns and about 12 rows
25
26
27 In the tabulator staff notation the outermost column is described with
28 notes between lines, the innermost column is described with notes
29 between lines and a cross as accidental, and the middle column is
30 described with notes on a line, whereby the row in the middle is
31 represented on the middle line in the staff.
32
33
34 Some words to transpose piano notes to the diatonic accordion:
35
36
37 1. Every diatonic accordion is built for some keys only (for example,
38 for the keys of C major and F major), so it is important to transpose a
39 piano melody to match one of these keys. Transpose the source code, not
40 only the output because this code is required later on to translate it
41 once more to the tabulator staff. This can be done with the command
42 @code{displayLilyMusic}.
43
44
45 2. You have to alternate the push- and pull-direction of the accordion
46 regularly. If the player has a too long part to pull the accordion gets
47 broken. On the other hand, some harmonies are only available in one
48 direction. Considering this, decide which parts of the melody are the
49 push-parts and which the pull-parts.
50
51
52 3. For each pull- or push-part translate the piano notes to the
53 according tabulature representation.
54
55 "
56   doctitle = "Score for diatonic accordion"
57 } % begin verbatim
58
59 verse = \lyricmode { Wie gross bist du! Wie gross bist du! }
60
61 harmonies = \new ChordNames \chordmode {
62   \germanChords
63   \set chordChanges = ##t
64   bes8 bes8 bes8
65   es2 f
66   bes1
67 }
68
69 NoStem = { \hide Stem }
70 NoNoteHead = \hide NoteHead
71 ZeroBeam = \override Beam.positions = #'(0 . 0)
72
73 staffTabLine = \new Staff \with {
74   \remove "Time_signature_engraver"
75   \remove "Clef_engraver"
76 } {
77   \override Staff.StaffSymbol.line-positions = #'(0)
78   % Shows one horizontal line. The vertical line (simulating a bar-line) is simulated with a gridline
79   \set Staff.midiInstrument = #"choir aahs"
80   \key c \major
81   \relative c''
82   {
83     % disable the following line to see the the noteheads while writing the song
84     \NoNoteHead
85     \override NoteHead.no-ledgers = ##t
86
87     % The beam between 8th-notes is used to draw the push-line
88     %How to fast write the push-lines:
89     %  1. write repeatedly 'c c c c c c c c |' for the whole length of the song
90     %  2. uncomment the line \NoNoteHead
91     %  3. compile
92     %  4. Mark the positions on which push/pull changes.
93     %     In the score-picture click on the position the push- or pull-part starts
94     %           (on the noteHead, the cursor will change to a hand-icon).
95     %     The cursor in the source code will jump just at this position.
96     %   a) If a push-part starts there, replace the 'c' by an 'e['
97     %   b) If a pull-part starts there, replace the 'c' by an 's'
98     %  5. Switch into 'overwrite-mode' by pressing the 'ins' key.
99     %  6. For the pull-parts overwrite the 'c' with 's'
100     %  7. For every push-part replace the last 'c' with 'e]'
101     %        8. Switch into 'insert-mode' again
102     %  9. At last it should look lik e.g. (s s e[ c | c c c c c c c c | c c c c c c e] s s)
103     % 10. re-enable the line \NoNoteHead
104     \autoBeamOff
105     \ZeroBeam
106     s8 s s e[ c c c c c c e] | s s s s s
107   }
108 }
109
110 % Accordion melody in tabulator score
111 % 1. Place a copy of the piano melody below
112 % 2. Separate piano melody into pull- and push-parts according to the staffTabLine you've already made
113 % 3. For each line: Double the line. Remark the 1st one (Keeps unchanged as reference) and then change the second line using the transformation paper
114 %    or the macros 'conv2diaton push.bsh' and 'conv2diaton pull.bsh'
115 % Tips:
116 % - In jEdit Search & Replace mark the Option 'Keep Dialog'
117
118 AccordionTabTwoCBesDur = {
119   % pull 1
120   %<f' bes'>8 <f' a'>8 <d' bes'>8 |
121   <g'' a''>8 <g'' b''>8 <e'' a''>8 |
122   % push 2
123   %<g' c''>4 <f' d''> <g' ees''> <f' a'> |
124   <g'' a''>4 <d'' eisis''> <g'' bisis''> <d'' f''> |
125   % pull 3
126   % <f' bes'>2 r8 }
127   <g'' a''>2 r8 }
128
129 AccordionTab= { \dynamicUp
130   % 1. Place a copy of the piano melody above
131   % 2. Separate piano melody into pull- and push-parts according to the staffTabLine you've already made
132   % 3. For each line: Double the line. Remark the 1st one (Keeps unchanged as reference) and then
133   %    change the second line using the transformation paper
134   % Tips:
135   % - In jEdit Search & Replace mark the Option 'Keep Dialog'
136   % -
137   \AccordionTabTwoCBesDur
138 }
139
140
141
142 \layout {
143   \context {
144     \Score
145     % The vertical line (simulating a bar-line) in
146     % the staffBassRhytm is a gridline
147     \consists "Grid_line_span_engraver"
148   }
149   \context {
150     \Staff
151     \consists "Grid_point_engraver"
152     gridInterval = #(ly:make-moment 4/4) % 4/4 - tact. How many beats per bar
153     % The following line has to be adjusted O-F-T-E-N.
154     \override GridPoint.Y-extent = #'(-2 . -21)
155   }
156   \context {
157     \ChoirStaff
158     \remove "System_start_delimiter_engraver"
159   }
160 }
161
162 staffVoice = \new Staff = astaffvoice  {
163   \time 4/4
164   \set Staff.instrumentName = "Voice"
165   \set Staff.midiInstrument = "voice oohs"
166   \key bes \major
167   \partial 8*3
168   \clef treble
169   {
170     \context Voice = "melodyVoi"
171     { <f' bes'>8 <f' a'>8 <d' bes'>8 | <g' c''>4 <f' d''> <g' es''> <f' a'> | <f' bes'>2 r8 }
172     \bar "|."
173   }
174 }
175
176 staffAccordionMel =
177 \new Staff  \with { \remove "Clef_engraver" } {
178   \accidentalStyle forget %Set the accidentals (Vorzeichen) for each note,
179   %do not remember them for the rest of the measure.
180   \time 4/4
181   \set Staff.instrumentName="Accordion"
182   \set Staff.midiInstrument="voice oohs"
183   \key c \major
184   \clef treble
185   { \AccordionTab \bar "|." }
186 }
187
188 AltOn =
189 #(define-music-function (mag) (number?)
190   #{ \override Stem.length = #(* 7.0 mag)
191       \override NoteHead.font-size =
192 #(inexact->exact (* (/ 6.0 (log 2.0)) (log mag))) #})
193
194 AltOff = {
195   \revert Stem.length
196   \revert NoteHead.font-size
197 }
198
199 BassRhytm = {s4 s8 | c2 c2 | c2 s8 }
200 LyricBassRhythmI=  \lyricmode { c b | c }
201
202 staffBassRhytm =
203 \new Staff = staffbass \with { \remove "Clef_engraver" } {
204   % This is not a RhythmicStaff  because it must be possible to append lyrics.
205
206   \override Score.GridLine.extra-offset = #'( 13.0 . 0.0 ) % x.y
207   \override Staff.StaffSymbol.line-positions = #'( 0 )
208   % Shows one horizontal line. The vertical line (simulating a bar-line) is simulated by a grid
209   % Search for 'grid' in this page to find all related functions
210   \time 4/4
211   {
212     \context Voice = "VoiceBassRhytm"
213     \stemDown \AltOn #0.6
214     \relative c''
215     {
216       \BassRhytm
217     }
218     \AltOff
219     \bar "|."
220   }
221 }
222
223 \score {
224   \new ChoirStaff <<
225     \harmonies
226     \staffVoice
227     \context Lyrics = "lmelodyVoi"
228       \with { alignBelowContext = astaffvoice }
229       \lyricsto melodyVoi \verse
230     \staffAccordionMel
231     \staffTabLine
232     \staffBassRhytm
233     \context Lyrics = "lBassRhytmAboveI"
234       \with { alignAboveContext = staffbass }
235       \lyricsto VoiceBassRhytm \LyricBassRhythmI
236   >>
237 }