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