]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/simultaneous.itely
Merge master into nested-bookparts
[lilypond.git] / Documentation / user / simultaneous.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
12 @node Simultaneous notes
13 @section Simultaneous notes
14
15 @lilypondfile[quote]{simultaneous-headword.ly}
16
17 Polyphony in music refers to having more than one voice occurring
18 in a piece of music.  Polyphony in LilyPond refers to having more
19 than one voice on the same staff.
20
21 @menu
22 * Single voice::
23 * Multiple voices::
24 @end menu
25
26
27 @node Single voice
28 @subsection Single voice
29
30 This section discusses simultaneous notes inside the same voice.
31
32 @menu
33 * Chorded notes::
34 * Simultaneous expressions::
35 * Clusters::
36 @end menu
37
38
39 @node Chorded notes
40 @unnumberedsubsubsec Chorded notes
41
42 @cindex chords
43 @cindex brackets, angle
44 @cindex angle brackets
45 @cindex relative pitch in chords
46
47 @funindex <
48 @funindex >
49 @funindex <...>
50
51 A chord is formed by enclosing a set of pitches between @code{<}
52 and @code{>}.  A chord may be followed by a duration and/or a set
53 of articulations, just like simple notes:
54
55 @lilypond[verbatim,quote,relative=1]
56 <c e g>2 <c f a>4-> <e g c>-.
57 @end lilypond
58
59 Relative mode can be used for pitches in chords. The octave of each
60 pitch is chosen using the preceding pitch as a reference except in
61 the case of the first pitch in a chord: the reference for the first
62 pitch is the @emph{first} pitch of the preceding chord.
63
64 For more information about chords, see @ref{Chord notation}.
65
66 @seealso
67
68 Music Glossary:
69 @rglos{chord}.
70
71 Learning Manual:
72 @rlearning{Combining notes into chords}.
73
74 Notation Reference:
75 @ref{Chord notation}.
76
77 Snippets:
78 @rlsr{Simultaneous notes}.
79
80 @node Simultaneous expressions
81 @unnumberedsubsubsec Simultaneous expressions
82
83 One or more music expressions enclosed in double angle brackets are
84 taken to be simultaneous.  If the first expression begins with a
85 single note or if the whole simultaneous expression appears
86 explicitly within a single voice, the whole expression is placed on
87 a single staff; otherwise the elements of the simultaneous
88 expression are placed on separate staves.
89
90 The following examples show simultaneous expressions on one staff:
91
92 @lilypond[quote,verbatim,relative=2]
93 \new Voice {  % explicit single voice
94   << {a4 b g2} {d4 g c,2} >>
95 }
96 @end lilypond
97
98 @lilypond[quote,verbatim,relative=2]
99 % single first note
100 a << {a4 b g}  {d4 g c,} >>
101 @end lilypond
102
103 This can be useful if the simultaneous sections have identical
104 rhythms, but attempts to attach notes with different durations
105 to the same stem will cause errors.
106
107 The following example shows how simultaneous expressions can
108 generate multiple staves implicitly:
109
110 @lilypond[quote,verbatim,relative=2]
111 % no single first note
112 << {a4 b g2}  {d4 g2 c,4} >>
113 @end lilypond
114
115 Here different rhythms cause no problems.
116
117
118 @node Clusters
119 @unnumberedsubsubsec Clusters
120
121 @cindex cluster
122 @cindex note cluster
123
124 @funindex \makeClusters
125 @funindex makeClusters
126
127 A cluster indicates a continuous range of pitches to be played.
128 They can be denoted as the envelope of a set of notes.  They are
129 entered by applying the function @code{\makeClusters} to a sequence
130 of chords, e.g.,
131
132 @lilypond[quote,relative=2,verbatim]
133 \makeClusters { <g b>2 <c g'> }
134 @end lilypond
135
136 Ordinary notes and clusters can be put together in the same staff,
137 even simultaneously.  In such a case no attempt is made to
138 automatically avoid collisions between ordinary notes and clusters.
139
140 @seealso
141
142 Music Glossary:
143 @rglos{cluster}.
144
145 Snippets:
146 @rlsr{Simultaneous notes}.
147
148 Internals Reference:
149 @rinternals{ClusterSpanner},
150 @rinternals{ClusterSpannerBeacon},
151 @rinternals{Cluster_spanner_engraver}.
152
153 @knownissues
154
155 Clusters look good only if they span at least two chords; otherwise
156 they appear too narrow.
157
158 Clusters do not have a stem and cannot indicate durations by
159 themselves, but the length of the printed cluster is determined by
160 the durations of the defining chords.  Separate clusters need a
161 separating rest between them.
162
163 Clusters do not produce MIDI output.
164
165 @node Multiple voices
166 @subsection Multiple voices
167
168 This section discusses simultaneous notes in multiple voices or
169 multiple staves.
170
171 @menu
172 * Single-staff polyphony::
173 * Voice styles::
174 * Collision resolution::
175 * Automatic part combining::
176 * Writing music in parallel::
177 @end menu
178
179
180 @node Single-staff polyphony
181 @unnumberedsubsubsec Single-staff polyphony
182
183 @cindex single-staff polyphony
184 @cindex polyphony, single-staff
185 @cindex voice
186 @cindex lyrics assigned to one voice
187
188 @funindex \voiceOne
189 @funindex voiceOne
190 @funindex \voiceOne ... \voiceFour
191 @funindex Voice
192 @funindex \oneVoice
193 @funindex oneVoice
194
195 @strong{@i{Explicitly instantiating voices}}
196
197 The basic structure needed to achieve multiple independent
198 voices in a single staff is illustrated in the following example:
199
200 @lilypond[quote,relative=3,verbatim]
201 \new Staff <<
202   \new Voice = "first"
203     { \voiceOne r8 r16 g e8. f16 g8[ c,] f e16 d }
204   \new Voice= "second"
205     { \voiceTwo d16 c d8~ d16 b c8~ c16 b c8~ c16 b8. }
206 >>
207 @end lilypond
208
209 Here, voices are instantiated explicitly and are given names. The
210 @code{\voiceOne} ... @code{\voiceFour} commands set up the voices
211 so that first and third voices get stems up, second and fourth
212 voices get stems down, third and fourth voice note heads are
213 horizontally shifted, and rests in the respective voices are
214 automatically moved to avoid collisions.  The @code{\oneVoice}
215 command returns all the voice settings to the neutral default
216 directions.
217
218 @strong{@i{Temporary polyphonic passages}}
219
220 A temporary polyphonic passage can be created with the following
221 construct:
222
223 @example
224 << @{ \voiceOne ... @}
225   \new Voice @{ \voiceTwo ... @}
226 >> \oneVoice
227 @end example
228
229 Here, the first expression within a temporary polyphonic passage is
230 placed into the @code{Voice} context which was in use immediately
231 before the polyphonic passage, and that same @code{Voice} context
232 continues after the temporary section.  Other expressions within
233 the angle brackets are assigned to distinct temporary voices.
234 This allows lyrics to be assigned to one continuing voice before,
235 during and after a polyphonic section:
236
237 @lilypond[quote, verbatim, relative=2]
238 <<
239   \new Voice = "melody" {
240     a4
241     <<
242       {
243         \voiceOne
244         g f
245       }
246       \new Voice {
247         \voiceTwo
248         d2
249       }
250     >>
251     \oneVoice
252     e4
253   }
254   \new Lyrics \lyricsto "melody" {
255   This is my song.
256   }
257 >>
258 @end lilypond
259
260 Here, the @code{\voiceOne} and @code{\voiceTwo} commands are
261 required to define the settings of each voice.
262
263 @strong{@i{The double backslash construct}}
264
265 The @code{<< @{...@} \\ @{...@} >>} construct, where the two (or
266 more) expressions are separated by double backslashes, behaves
267 differently to the similar construct without the double backslashes:
268 @emph{all} the expressions within this contruct are assigned
269 to new @code{Voice} contexts.  These new @code{Voice} contexts
270 are created implicitly and are given the fixed names @code{"1"},
271 @code{"2"}, etc.
272
273 The first example could be typeset as follows:
274
275 @lilypond[quote,relative=3,verbatim]
276 <<
277   { r8 r16 g e8. f16 g8[ c,] f e16 d }
278   \\
279   { d16 c d8~ d16 b c8~ c16 b c8~ c16 b8. }
280 >>
281 @end lilypond
282
283 This syntax can be used where it does not matter that temporary
284 voices are created and then discarded.  These implicitly created
285 voices are given the settings equivalent to the effect of the
286 @code{\voiceOne} ... @code{\voiceFour} commands, in the order in
287 which they appear in the code.
288
289 In the following example, the intermediate voice has stems up,
290 therefore we enter it in the third place, so it becomes voice
291 three, which has the stems up as desired.  Spacer rests are
292 used to avoid printing doubled rests.
293
294 @lilypond[quote,relative=3,verbatim]
295 <<
296   { r8 g g  g g f16 ees f8 d }
297   \\
298   { ees,8 r ees r d r d r }
299   \\
300   { d'8 s c s bes s a s }
301 >>
302 @end lilypond
303
304 In all but the simplest works it is advisable to create explicit
305 @code{Voice} contexts as explained in @rlearning{Contexts and engravers} and
306 @rlearning{Explicitly instantiating voices}.
307
308 @strong{@i{Identical rhythms}}
309
310 In the special case that we want to typeset parallel pieces of music
311 that have the same rhythm, we can combine them into a single
312 @code{Voice} context, thus forming chords.  To achieve this, enclose
313 them in a simple simultaneous music construct within an explicit voice:
314
315 @lilypond[quote,relative=2,verbatim]
316 \new Voice <<
317   { e4 f8 d e16 f g8 d4 }
318   { c4 d8 b c16 d e8 b4 }
319 >>
320 @end lilypond
321
322 This method leads to strange beamings and warnings if the pieces of
323 music do not have the same rhythm.
324
325 @predefined
326
327 @code{\voiceOne},
328 @code{\voiceTwo},
329 @code{\voiceThree},
330 @code{\voiceFour},
331 @code{\oneVoice}.
332
333 @seealso
334
335 Learning Manual:
336 @rlearning{Voices contain music},
337 @rlearning{Explicitly instantiating voices}.
338
339 Notation Reference:
340 @ref{Percussion staves},
341 @ref{Invisible rests}.
342
343 Snippets:
344 @rlsr{Simultaneous notes}.
345
346
347 @node Voice styles
348 @unnumberedsubsubsec Voice styles
349
350 @cindex voice styles
351 @cindex styles, voice
352 @cindex coloring voices
353 @funindex \voiceOneStyle
354 @funindex \voiceTwoStyle
355 @funindex \voiceThreeStyle
356 @funindex \voiceFourStyle
357 @funindex \voiceNeutralStyle
358
359 Voices may be given distinct colors and shapes, allowing them to be
360 easily identified:
361
362 @lilypond[quote,relative=2,verbatim]
363 <<
364   { \voiceOneStyle d4 c2 b4 }
365   \\
366   { \voiceTwoStyle e,2 e }
367   \\
368   { \voiceThreeStyle b2. c4 }
369   \\
370   { \voiceFourStyle g'2 g }
371 >>
372 @end lilypond
373
374 The @code{\voiceNeutralstyle} command is used to revert to the
375 standard presentation.
376
377 @predefined
378
379
380 @code{\voiceOneStyle},
381
382 @code{\voiceTwoStyle},
383 @code{\voiceThreeStyle},
384 @code{\voiceFourStyle},
385 @code{\voiceNeutralStyle}.
386
387 @seealso
388
389 Learning Manual:
390 @rlearning{I'm hearing Voices},
391 @rlearning{Other sources of information}.
392
393 Snippets:
394 @rlsr{Simultaneous notes}.
395
396
397 @node Collision resolution
398 @unnumberedsubsubsec Collision resolution
399
400 @cindex merging notes
401 @cindex note collisions
402 @cindex collisions
403 @cindex shift note
404 @cindex multiple voices
405 @cindex voices, multiple
406 @cindex polyphonic music
407 @cindex shifting voices
408 @cindex voices, multiple
409 @cindex shift rest, automatic
410 @funindex \shiftOn
411 @funindex shiftOn
412 @funindex \shiftOnn
413 @funindex shiftOnn
414 @funindex \shiftOnnn
415 @funindex shiftOnnn
416 @funindex \shiftOff
417 @funindex shiftOff
418 @funindex \mergeDifferentlyDottedOn
419 @funindex mergeDifferentlyDottedOn
420 @funindex \mergeDifferentlyDottedOff
421 @funindex mergeDifferentlyDottedOff
422 @funindex \mergeDifferentlyHeadedOn
423 @funindex mergeDifferentlyHeadedOn
424 @funindex \mergeDifferentlyHeadedOff
425 @funindex mergeDifferentlyHeadedOff
426
427 The note heads of notes in different voices with the same pitch,
428 same note head and opposite stem direction are automatically
429 merged, but notes with different note heads or the same stem
430 direction are not.  Rests opposite a stem in a different voice
431 are shifted vertically.
432
433 @lilypond[quote,verbatim,relative=2]
434 <<
435   {
436     c8 d e d c d c4
437     g'2 fis
438   } \\ {
439     c2 c8. b16 c4
440     e,2 r
441   } \\ {
442     \oneVoice
443     s1
444     e8 a b c d2
445   }
446 >>
447 @end lilypond
448
449 Notes with different note heads may be merged, with the
450 exception of half-note heads and quarter-note heads:
451
452 @lilypond[quote,verbatim,relative=2]
453 <<
454   {
455     \mergeDifferentlyHeadedOn
456     c8 d e d c d c4
457     g'2 fis
458   } \\ {
459     c2 c8. b16 c4
460     e,2 r
461   } \\ {
462     \oneVoice
463     s1
464     e8 a b c d2
465   }
466 >>
467 @end lilypond
468
469 Note heads with different dots may be merged:
470
471 @lilypond[quote,relative=2,verbatim]
472 <<
473   {
474     \mergeDifferentlyHeadedOn
475     \mergeDifferentlyDottedOn
476     c8 d e d c d c4
477     g'2 fis
478   } \\ {
479     c2 c8. b16 c4
480     e,2 r
481   } \\ {
482     \oneVoice
483     s1
484     e8 a b c d2
485   }
486 >>
487 @end lilypond
488
489
490 The half note and eighth note at the start of the second measure
491 are incorrectly merged because @code{\mergeDifferentlyHeadedOn}
492 cannot successfully complete the merge when three or more notes
493 line up in the same column, and in this case a warning is given.
494 To allow the merge to work properly a @code{\shift} must be applied
495 to the note that should not be merged.  Here, @code{\shiftOn} is
496 applied to move the top @notation{g} out of the column, and
497 @code{\mergeDifferentlyHeadedOn} then works properly.
498
499 @lilypond[quote,relative=2,verbatim]
500 <<
501   {
502     \mergeDifferentlyHeadedOn
503     \mergeDifferentlyDottedOn
504     c8 d e d c d c4
505     \shiftOn
506     g'2 fis
507   } \\ {
508     c2 c8. b16 c4
509     e,2 r
510   } \\ {
511     \oneVoice
512     s1
513     e8 a b c d2
514   }
515
516 >>
517 @end lilypond
518
519 The @code{\shiftOn}, @code{\shiftOnn}, and @code{\shiftOnnn}
520 commands specify the degree to which chords of the current voice
521 should be shifted.  The outer voices (normally: voices one and
522 two) have @code{\shiftOff}, while the inner voices (three and
523 four) have @code{\shiftOn}.  @code{\shiftOnn} and
524 @code{\shiftOnnn} define further shift levels.
525
526 Notes are only merged if they have opposing stem directions (e.g. in
527 @code{Voice} 1 and 2).
528
529
530 @predefined
531
532 @code{\mergeDifferentlyDottedOn},
533 @code{\mergeDifferentlyDottedOff},
534 @code{\mergeDifferentlyHeadedOn},
535 @code{\mergeDifferentlyHeadedOff}.
536
537 @code{\shiftOn},
538 @code{\shiftOnn},
539 @code{\shiftOnnn},
540 @code{\shiftOff}.
541
542 @snippets
543
544 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
545 {additional-voices-to-avoid-collisions.ly}
546
547 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
548 {forcing-horizontal-shift-of-notes.ly}
549
550 @seealso
551
552 Music Glossary:
553 @rglos{polyphony}.
554
555 Learning Manual:
556 @rlearning{Multiple notes at once},
557 @rlearning{Voices contain music},
558 @rlearning{Collisions of objects}.
559
560 Snippets:
561 @rlsr{Simultaneous notes}.
562
563 Internals Reference:
564 @rinternals{NoteColumn},
565 @rinternals{NoteCollision},
566 @rinternals{RestCollision}.
567
568 @knownissues
569
570 When using @code{\mergeDifferentlyHeadedOn} with an upstem eighth
571 or a shorter note, and a downstem half note, the eighth note stem
572 gets a slightly wrong offset because of the different width of the
573 half note head symbol.
574
575 @ignore
576 @c TODO investigate! Sometimes it works, sometimes not. --FV
577 The requirements for successfully merging different note heads that
578 are at the same time differently dotted are not clear.
579 @end ignore
580
581 There is no support for chords where the same note occurs with
582 different accidentals in the same chord.  In this case, it is
583 recommended to use enharmonic transcription, or to use special
584 cluster notation (see @ref{Clusters}).
585
586
587 @node Automatic part combining
588 @unnumberedsubsubsec Automatic part combining
589
590 @cindex automatic part combining
591 @cindex part combiner
592 @cindex combining parts
593 @cindex a due part
594 @cindex solo part
595 @funindex \partcombine
596 @funindex partcombine
597
598 Automatic part combining is used to merge two parts of music onto
599 a staff.  It is aimed at typesetting orchestral scores.  When the
600 two parts are identical for a period of time, only one is shown.
601 In places where the two parts differ, they are typeset as separate
602 voices, and stem directions are set automatically.  Also, solo and
603 @notation{a due} parts are identified and marked by default.
604
605 The syntax for part combining is:
606
607 @example
608 \partcombine @var{musicexpr1} @var{musicexpr2}
609 @end example
610
611 The following example demonstrates the basic functionality of the
612 part combiner: putting parts on one staff and setting stem
613 directions and polyphony.  The same variables are used for the
614 independent parts and the combined staff.
615
616 @lilypond[quote,verbatim]
617 instrumentOne = \relative c' {
618   c4 d e f
619   R1
620   d'4 c b a
621   b4 g2 f4
622   e1
623 }
624
625 instrumentTwo = \relative g' {
626   R1
627   g4 a b c
628   d c b a
629   g f( e) d
630   e1
631 }
632
633 <<
634   \new Staff \instrumentOne
635   \new Staff \instrumentTwo
636   \new Staff \partcombine \instrumentOne \instrumentTwo
637 >>
638 @end lilypond
639
640 The notes in the third measure appear only once, although they were
641 specified in both parts.  Stem, slur, and tie directions are set
642 automatically, depending whether there is a solo or unison.  When
643 needed in polyphony situations, the first part (with context called
644 @code{one}) always gets up stems, while the second (called @code{two})
645 always gets down stems.  In solo situations, the first and second
646 parts get marked with @q{Solo} and @q{Solo II}, respectively.  The
647 unisono (@notation{a due}) parts are marked by default with the text
648 @qq{a2}.
649
650 Both arguments to @code{\partcombine} will be interpreted as
651 @code{Voice} contexts.  If using relative octaves,
652 @code{\relative} should be specified for both music expressions,
653 i.e.,
654
655 @example
656 \partcombine
657   \relative @dots{} @var{musicexpr1}
658   \relative @dots{} @var{musicexpr2}
659 @end example
660
661 @noindent
662 A @code{\relative} section that is outside of @code{\partcombine}
663 has no effect on the pitches of @var{musicexpr1} and
664 @var{musicexpr2}.
665
666 @snippets
667
668 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
669 {combining-two-parts-on-the-same-staff.ly}
670
671 @lilypondfile[verbatim,lilyquote,texidoc,doctitle]
672 {changing-partcombine-texts.ly}
673
674 @seealso
675
676 Music Glossary:
677 @rglos{a due},
678 @rglos{part}.
679
680 Notation Reference:
681 @ref{Writing parts}.
682
683 Snippets:
684 @rlsr{Simultaneous notes}.
685
686 Internals Reference:
687 @rinternals{PartCombineMusic},
688 @rinternals{Voice}.
689
690 @knownissues
691
692 @code{\partcombine} can only accept two voices. 
693
694 When @code{printPartCombineTexts} is set, if the two voices play
695 the same notes on and off, the part combiner may typeset @code{a2}
696 more than once in a measure.
697
698 @code{\partcombine} cannot be inside @code{\times}.
699
700 @code{\partcombine} cannot be inside @code{\relative}.
701
702 Internally, the @code{\partcombine} interprets both arguments as
703 @code{Voice}s and decides when the parts can be combined.  When they have
704 different durations they cannot be combined and are given the names
705 @code{one} and @code{two}.  Consequently, if the arguments switch to
706 differently named @rinternals{Voice} contexts, the events in those will
707 be ignored.  Likewise, partcombining isn't designed to work with lyrics;
708 when one of the voices is explicitly named in order to attach lyrics to
709 it, the partcombining stops working.
710
711 @code{\partcombine} only observes onset times of notes. It cannot
712 determine whether a previously started note is playing or not, leading
713 to various problems.
714
715
716 @node Writing music in parallel
717 @unnumberedsubsubsec Writing music in parallel
718
719 @cindex writing music in parallel
720 @cindex interleaved music
721 @cindex parallel music
722 @funindex \parallelMusic
723 @funindex parallelMusic
724
725 Music for multiple parts can be interleaved in input code.  The
726 function @code{\parallelMusic} accepts a list with the names of a
727 number of variables to be created, and a musical expression.  The
728 content of alternate measures from the expression become the value
729 of the respective variables, so you can use them afterwards to
730 print the music.
731
732 @warning{Bar checks @code{|} must be used, and the measures must
733 be of the same length.}
734
735 @lilypond[quote,verbatim]
736 \parallelMusic #'(voiceA voiceB voiceC) {
737   % Bar 1
738   r8 g'16 c'' e'' g' c'' e'' r8 g'16 c'' e'' g' c'' e'' |
739   r16 e'8.~   e'4            r16 e'8.~   e'4            |
740   c'2                        c'2                        |
741
742   % Bar 2
743   r8 a'16 d'' f'' a' d'' f'' r8 a'16 d'' f'' a' d'' f'' |
744   r16 d'8.~   d'4            r16 d'8.~   d'4            |
745   c'2                        c'2                        |
746
747 }
748 \new StaffGroup <<
749   \new Staff << \voiceA \\ \voiceB >>
750   \new Staff { \clef bass \voiceC }
751 >>
752 @end lilypond
753
754 Relative mode may be used.  Note that the @code{\relative} command
755 is not used inside @code{\parallelMusic} itself.  The notes are
756 relative to the preceding note in the voice, not to the previous
757 note in the input -- in other words, relative notes for
758 @code{voiceA} ignore the notes in @code{voiceB}.
759
760 @lilypond[quote,verbatim]
761 \parallelMusic #'(voiceA voiceB voiceC) {
762   % Bar 1
763   r8 g16 c e g, c e r8 g,16 c e g, c e  |
764   r16 e8.~ e4       r16 e8.~  e4        |
765   c2                c                   |
766
767   % Bar 2
768   r8 a,16 d f a, d f r8 a,16 d f a, d f |
769   r16 d8.~  d4       r16 d8.~  d4       |
770   c2                 c                  |
771
772  }
773 \new StaffGroup <<
774   \new Staff << \relative c'' \voiceA \\ \relative c' \voiceB >>
775   \new Staff \relative c' { \clef bass \voiceC }
776 >>
777 @end lilypond
778
779 This works quite well for piano music.  This example maps four
780 consecutive measures to four variables:
781
782 @lilypond[quote,verbatim]
783 global = {
784   \key g \major
785   \time 2/4
786 }
787
788 \parallelMusic #'(voiceA voiceB voiceC voiceD) {
789   % Bar 1
790   a8    b     c   d     |
791   d4          e         |
792   c16 d e fis d e fis g |
793   a4          a         |
794
795   % Bar 2
796   e8      fis  g     a   |
797   fis4         g         |
798   e16 fis g  a fis g a b |
799   a4           a         |
800
801   % Bar 3 ...
802 }
803
804 \score {
805   \new PianoStaff <<
806      \new Staff {
807        \global
808        <<
809          \relative c'' \voiceA
810          \\
811          \relative c'  \voiceB
812        >>
813      }
814      \new Staff {
815        \global \clef bass
816        <<
817          \relative c \voiceC
818          \\
819          \relative c \voiceD
820        >>
821      }
822   >>
823 }
824 @end lilypond
825
826 @seealso
827
828 Learning Manual:
829 @rlearning{Organizing pieces with variables}.
830
831 Snippets:
832 @rlsr{Simultaneous notes}.