]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/keyboards.itely
Merge branch 'stable'
[lilypond.git] / Documentation / user / keyboards.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9 @c \version "2.11.61"
10
11 @node Keyboard and other multi-staff instruments
12 @section Keyboard and other multi-staff instruments
13
14 @lilypondfile[quote]{keyboard-headword.ly}
15
16 This section discusses several aspects of music notation that are
17 unique to keyboard instruments and other instruments notated on
18 many staves, such as harps and vibraphones.  For the purposes of
19 this section this entire group of multi-staff instruments is called
20 @qq{keyboards} for short, even though some of them do not have a
21 keyboard.
22
23 @menu
24 * Common notation for keyboards::
25 * Piano::
26 * Accordion::
27 * Harp::
28 @end menu
29
30 @node Common notation for keyboards
31 @subsection Common notation for keyboards
32
33 This section discusses notation issues that may arise for most
34 keyboard instruments.
35
36 @menu
37 * References for keyboards::
38 * Changing staff manually::
39 * Changing staff automatically::
40 * Staff-change lines::
41 * Cross-staff stems::
42 @end menu
43
44 @node References for keyboards
45 @unnumberedsubsubsec References for keyboards
46
47 @cindex piano staves
48 @cindex staves, piano
49 @cindex staves, keyboard instruments
50 @cindex staves, keyed instruments
51 @cindex keyboard instrument staves
52 @cindex keyed instrument staves
53
54 @funindex PianoStaff
55
56 Keyboard instruments are usually notated with Piano staves.  These
57 are two or more normal staves coupled with a brace.  The same
58 notation is also used for other keyed instruments.
59 Organ music is normally written with two staves inside a
60 @code{PianoStaff} group and third, normal staff for the pedals.
61
62 The staves in keyboard music are largely independent, but
63 sometimes voices can cross between the two staves.  This
64 section discusses notation techniques particular to keyboard
65 music.
66
67 Several common issues in keyboard music are covered elsewhere:
68
69 @itemize
70
71 @item Keyboard music usually contains multiple voices and the
72 number of voices may change regularly; this is described in
73 @ref{Collision resolution}.
74
75 @item Keyboard music can be written in parallel, as described in
76 @ref{Writing music in parallel}.
77
78 @item Fingerings are indicated with @ref{Fingering instructions}.
79
80 @item Organ pedal indications are inserted as articulations, see
81 @ref{List of articulations}.
82
83 @item Vertical grid lines can be shown with @ref{Grid lines}.
84
85 @item Keyboard music often contains @notation{Laissez vibrer} ties
86 as well as ties on arpeggios and tremolos, described in
87 @ref{Ties}.
88
89 @item Placing arpeggios across multiple voices and staves is
90 covered in @ref{Arpeggio}.
91
92 @item Tremolo marks are described in @ref{Tremolo repeats}.
93
94 @item Several of the tweaks that can occur in keyboard music are
95 demonstrated in @rlearning{Real music example}.
96
97 @item Hidden notes can be used to produce ties that cross voices,
98 as shown in @rlearning{Other uses for tweaks}.
99
100 @end itemize
101
102 @c @snippets
103 @c @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
104 @c {forcing-visibility-of-systems-with-multi-bar-rests-when-using-\RemoveEmptyStaffContext.ly}
105 @c http://lsr.dsi.unimi.it/LSR/Item?u=1&id=312
106
107 @seealso
108 Learning Manual:
109 @rlearning{Real music example},
110 @rlearning{Other uses for tweaks}.
111
112 Notation Reference:
113 @ref{Grouping staves},
114 @ref{Instrument names},
115 @ref{Collision resolution},
116 @ref{Writing music in parallel},
117 @ref{Fingering instructions},
118 @ref{List of articulations},
119 @ref{Grid lines},
120 @ref{Ties},
121 @ref{Arpeggio},
122 @ref{Tremolo repeats}.
123
124 Internals Reference:
125 @rinternals{PianoStaff}.
126
127 Snippets:
128 @rlsr{Keyboards}.
129
130
131 @knownissues
132
133 @cindex keyboard music, centering dynamics
134 @cindex dynamics, centered in keyboard music
135 @cindex piano music, centering dynamics
136 @cindex centered dynamics in piano music
137 @funindex staff-padding
138
139 Dynamics are not automatically centered, but workarounds do exist.  One
140 option is the @q{piano centered dynamics} template under
141 @rlearning{Piano templates}; another option is to increase the
142 @code{staff-padding} of dynamics as discussed in @rlearning{Moving
143 objects}.
144
145 @node Changing staff manually
146 @unnumberedsubsubsec Changing staff manually
147
148 @cindex changing staff manually
149 @cindex manual staff changes
150 @cindex staff changes, manual
151 @cindex cross-staff notes
152 @cindex notes, cross-staff
153 @cindex cross-staff beams
154 @cindex beams, cross-staff
155
156 @funindex \change
157 @funindex change
158
159 Voices can be switched between staves manually, using the command
160
161 @example
162 \change Staff = @var{staffname}
163 @end example
164
165 @noindent
166 The string @var{staffname} is the name of the staff.  It switches
167 the current voice from its current staff to the staff called
168 @var{staffname}.  Typical values for @var{staffname} are
169 @code{"up"} and @code{"down"}, or @code{"RH"} and @code{"LH"}.
170
171 Cross-staff notes are beamed automatically:
172
173 @lilypond[verbatim,quote]
174 \new PianoStaff <<
175   \new Staff = "up" {
176     <e' c'>8
177     \change Staff = "down"
178     g8 fis g
179     \change Staff = "up"
180     <g'' c''>8
181     \change Staff = "down"
182     e8 dis e
183     \change Staff = "up"
184   }
185   \new Staff = "down" {
186     \clef bass
187     % keep staff alive
188     s1
189   }
190 >>
191 @end lilypond
192
193 If the beaming needs to be tweaked, make any changes to the stem
194 directions first.  The beam positions are then measured from the
195 center of the staff that is closest to the beam.  For a simple
196 example of beam tweaking, see @rlearning{Fixing overlapping
197 notation}.
198
199
200 @seealso
201 Learning Manual:
202 @rlearning{Fixing overlapping notation}.
203
204 Notation Reference:
205 @ref{Stems},
206 @ref{Automatic beams}.
207
208 Snippets:
209 @rlsr{Keyboards}.
210
211 Internals Reference:
212 @rinternals{Beam},
213 @rinternals{ContextChange}.
214
215
216 @node Changing staff automatically
217 @unnumberedsubsubsec Changing staff automatically
218
219 @cindex changing staff automatically
220 @cindex automatic staff changes
221 @cindex staff changes, automatic
222
223 @funindex \autochange
224 @funindex autochange
225 @funindex PianoStaff
226
227 Voices can be made to switch automatically between the top and the
228 bottom staff.  The syntax for this is
229
230 @example
231 \autochange @dots{}@var{music}@dots{}
232 @end example
233
234 @noindent
235 This will create two staves inside the current staff group
236 (usually a @code{PianoStaff}), called @code{"up"} and
237 @code{"down"}.  The lower staff will be in the bass clef by default.
238 The autochanger switches on the basis of the pitch (middle@tie{}C is the
239 turning point), and it looks ahead skipping over rests to switch
240 in advance.
241
242 @lilypond[quote,verbatim]
243 \new PianoStaff {
244   \autochange {
245     g4 a b c'
246     d'4 r a g
247   }
248 }
249 @end lilypond
250
251 @cindex relative music and autochange
252 @cindex autochange and relative music
253
254 @funindex \relative
255 @funindex relative
256
257 A @code{\relative} section that is outside of @code{\autochange}
258 has no effect on the pitches of the music, so if necessary, put
259 @code{\relative} inside @code{\autochange}.
260
261 If additional control is needed over the individual staves, they
262 can be created manually with the names @code{"up"} and
263 @code{"down"}.  The @code{\autochange} command will then switch
264 its voice between the existing staves.  
265
266 @warning{If staves are created manually, they @emph{must} be named
267 @code{"up"} and @code{"down"}.}
268
269 For example, staves must be created manually in order to place a
270 key signature in the lower staff:
271
272 @lilypond[quote,verbatim]
273 \new PianoStaff <<
274   \new Staff = "up" {
275     \new Voice = "melOne" {
276       \key g \major
277       \autochange \relative c' {
278         g8 b a c b d c e
279         d8 r fis, g a2
280       }
281     }
282   }
283   \new Staff = "down" {
284     \key g \major
285     \clef bass
286   }
287 >>
288 @end lilypond
289
290
291 @seealso
292 Notation Reference:
293 @ref{Changing staff manually}.
294
295 Snippets:
296 @rlsr{Keyboards}.
297
298 Internals Reference:
299 @rinternals{AutoChangeMusic}.
300
301
302 @knownissues
303
304 @cindex chords, splitting across staves with \autochange
305
306 The staff switches may not end up in optimal places.  For high
307 quality output, staff switches should be specified manually.
308
309 Chords will not be split across the staves; they will be assigned to a
310 staff based on the first note named in the chord construct.
311
312 @node Staff-change lines
313 @unnumberedsubsubsec Staff-change lines
314
315 @cindex staff-change line
316 @cindex staff change line
317 @cindex cross-staff line
318 @cindex cross staff line
319 @cindex line, staff-change follower
320 @cindex line, cross-staff
321 @cindex line, staff-change
322 @cindex follow voice
323 @cindex voice, following
324 @cindex staff switching
325 @cindex cross-staff
326
327 @funindex followVoice
328 @funindex \showStaffSwitch
329 @funindex showStaffSwitch
330 @funindex \hideStaffSwitch
331 @funindex hideStaffSwitch
332
333 Whenever a voice switches to another staff, a line connecting the
334 notes can be printed automatically:
335
336 @lilypond[quote,verbatim,relative=1]
337 \new PianoStaff <<
338   \new Staff = "one" {
339     \showStaffSwitch
340     c1
341     \change Staff = "two"
342     b2 a
343   }
344   \new Staff = "two" {
345     \clef bass
346     s1*2
347   }
348 >>
349 @end lilypond
350
351
352 @predefined
353 @code{\showStaffSwitch},
354 @code{\hideStaffSwitch}.
355 @endpredefined
356
357
358 @seealso
359 Snippets:
360 @rlsr{Keyboards}.
361
362 Internals Reference:
363 @rinternals{Note_head_line_engraver},
364 @rinternals{VoiceFollower}.
365
366
367 @node Cross-staff stems
368 @unnumberedsubsubsec Cross-staff stems
369
370 @cindex cross-staff notes
371 @cindex cross staff notes
372 @cindex notes, cross-staff
373 @cindex cross-staff stems
374 @cindex cross staff stems
375 @cindex stems, cross-staff
376 @cindex chords, cross-staff
377 @cindex cross-staff chords
378 @cindex cross staff chords
379
380 @funindex Stem
381 @funindex cross-staff
382 @funindex length
383 @funindex flag-style
384
385 Chords that cross staves may be produced:
386
387 @lilypond[verbatim,quote]
388 \new PianoStaff <<
389   \new Staff {
390     \relative c' {
391       f8 e4 d8 d f e4
392     }
393   }
394   \new Staff {
395     \relative c' {
396       << {
397         \clef bass
398         % stems may overlap the other staff
399         \override Stem #'cross-staff = ##t
400         % extend the stems to reach other other staff
401         \override Stem #'length = #12
402         % do not print extra flags
403         \override Stem #'flag-style = #'no-flag
404         % prevent beaming as needed
405         a8 g4 f8 f bes\noBeam g4
406       }
407       \\
408       {
409         f,2 bes4 c
410       } >>
411     }
412   }
413 >>
414 @end lilypond
415
416 @snippets
417 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
418 {indicating-cross-staff-chords-with-arpeggio-bracket.ly}
419
420
421 @seealso
422 Snippets:
423 @rlsr{Keyboards}.
424
425 Internals Reference:
426 @rinternals{Stem}.
427
428
429 @node Piano
430 @subsection Piano
431
432 This section discusses notation issues that relate most directly to the
433 piano.
434
435 @menu
436 * Piano pedals::
437 @end menu
438
439 @node Piano pedals
440 @unnumberedsubsubsec Piano pedals
441
442 @cindex piano pedals
443 @cindex pedals, piano
444 @cindex sustain pedal
445 @cindex pedal, sustain
446 @cindex sostenuto pedal
447 @cindex pedal, sostenuto
448 @cindex una corda
449 @cindex tre corde
450 @cindex sos.
451 @cindex U.C.
452
453 @funindex \sustainOn
454 @funindex sustainOn
455 @funindex \sustainOff
456 @funindex sustainOff
457 @funindex \sostenutoOn
458 @funindex sostenutoOn
459 @funindex \sostenutoOff
460 @funindex sostenutoOff
461 @funindex \unaCorda
462 @funindex unaCorda
463 @funindex \treCorde
464 @funindex treCorde
465
466 Pianos generally have three pedals that alter the way sound is
467 produced: @notation{sustain}, @notation{sostenuto}
468 (@notation{sos.}), and @notation{una corda} (@notation{U.C.}).
469 Sustain pedals are also found on vibraphones and celestas.
470
471 @lilypond[quote,verbatim,relative=2]
472 c4\sustainOn d e g
473 <c, f a>1\sustainOff
474 c4\sostenutoOn e g c,
475 <bes d f>1\sostenutoOff
476 c4\unaCorda d e g
477 <d fis a>1\treCorde
478 @end lilypond
479
480 @cindex pedal indication styles
481 @cindex pedal indication, text
482 @cindex pedal indication, bracket
483 @cindex pedal indication, mixed
484 @cindex pedal sustain style
485 @cindex sustain pedal style
486
487 @funindex pedalSustainStyle
488 @funindex mixed
489 @funindex bracket
490 @funindex text
491
492 There are three styles of pedal indications: text, bracket, and mixed.
493 The sustain pedal and the una corda pedal use the text style by default
494 while the sostenuto pedal uses mixed by default.
495
496 @lilypond[quote,verbatim,relative=2]
497 c4\sustainOn g c2\sustainOff
498 \set Staff.pedalSustainStyle = #'mixed
499 c4\sustainOn g c d
500 d\sustainOff\sustainOn g, c2\sustainOff
501 \set Staff.pedalSustainStyle = #'bracket
502 c4\sustainOn g c d
503 d\sustainOff\sustainOn g, c2
504 \bar "|."
505 @end lilypond
506
507 The placement of the pedal commands matches the physical movement of the
508 sustain pedal during piano performance.  Pedalling to the final bar line
509 is indicated by omitting the final pedal up command.
510
511
512 @seealso
513 Notation Reference:
514 @ref{Ties}.
515
516 Snippets:
517 @rlsr{Keyboards}.
518
519 Internals Reference:
520 @rinternals{SustainPedal},
521 @rinternals{SustainPedalLineSpanner},
522 @rinternals{SustainEvent},
523 @rinternals{SostenutoPedal},
524 @rinternals{SostenutoPedalLineSpanner},
525 @rinternals{SostenutoEvent},
526 @rinternals{UnaCordaPedal},
527 @rinternals{UnaCordaPedalLineSpanner},
528 @rinternals{UnaCordaEvent},
529 @rinternals{PianoPedalBracket},
530 @rinternals{Piano_pedal_engraver}.
531
532
533 @node Accordion
534 @subsection Accordion
535
536 @cindex accordion
537
538 This section discusses notation that is unique to the accordion.
539
540 @menu
541 * Discant symbols::
542 @end menu
543
544 @node Discant symbols
545 @unnumberedsubsubsec Discant symbols
546
547 @cindex accordion discant symbols
548 @cindex discant symbols, accordion
549 @cindex accordion shifts
550 @cindex accordion shift symbols
551
552 Accordions are often built with more than one set of reeds that may be
553 in unison with, an octave above, or an octave below the written pitch.
554 Each accordion maker has different names for the @notation{shifts} that
555 select the various reed combinations, such as @notation{oboe},
556 @notation{musette}, or @notation{bandonium}, so a system of symbols has
557 come into use to simplify the performance instructions.
558
559 @snippets
560
561 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
562 {accordion-discant-symbols.ly}
563
564
565 @seealso
566 Snippets:
567 @rlsr{Keyboards}.
568
569
570 @node Harp
571 @subsection Harp
572
573 This section discusses notation issues that are unique to the harp.
574
575 @menu
576 * References for harps::
577 * Harp pedals::
578 @end menu
579
580 @node References for harps
581 @unnumberedsubsubsec References for harps
582 @cindex harps
583 @cindex bisbiglando
584
585 Some common characteristics of harp music are covered elsewhere:
586
587 @itemize
588
589 @item The glissando is the most characterisic harp technique,
590 @ref{Glissando}.
591
592 @item A @notation{bisbigliando} is written as a tremelo @ref{Tremolo
593 repeats}
594
595 @item Natural harmonics are covered under @ref{Harmonics}.
596
597 @item For directional arpeggios and non-arpeggios, see @ref{Arpeggio}.
598
599 @end itemize
600
601 @seealso
602 Notation Reference:
603 @ref{Tremolo repeats}
604 @ref{Glissando}
605 @ref{Arpeggio}
606 @ref{Harmonics}
607
608 @node Harp pedals
609 @unnumberedsubsubsec Harp pedals
610
611 @cindex harp pedals
612 @cindex harp pedal diagrams
613 @cindex pedals, harp
614 @cindex pedal diagrams, harp
615
616 Harps have seven strings per octave that may be sounded at the natural,
617 flattened, or sharpened pitch. In lever harps, each string is adjusted
618 individually, but in pedal harps every string with the same pitch name
619 is controlled by a single pedal. From the player's left to right, the
620 pedals are D, C, and B on the left and E, F, G, and A on the right.
621 The position of the pedals may be indicated with text marks:
622
623 @lilypond[quote,verbatim,relative=2]
624 \textLengthOn
625 cis1_\markup \concat \vcenter { [D \flat C \sharp B|E \sharp F \sharp G A \flat] }
626 c!1_\markup \concat \vcenter {[ C \natural ]}
627 @end lilypond
628
629 or pedal diagrams:
630
631 @lilypond[quote,verbatim,relative=2]
632 \textLengthOn
633 cis1_\markup { \harp-pedal #"^v-|vv-^" }
634 c!1_\markup { \harp-pedal #"^o--|vv-^" }
635 @end lilypond
636
637 The @code{\harp-pedal} command accepts a string of characters, where
638 @code{^} is the highest pedal position (flattened pitch), @code{-} is
639 the middle pedal postion (natural pitch), @code{v} is the lowest pedal
640 position (sharpened pitch), and @code{|} is the divider. A prefixed
641 @code{o} will circle the following pedal symbol.
642
643 @seealso
644 Notation Reference:
645 @ref{Text scripts}
646 @ref{Instrument Specific Markup}