]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/nl/learning/fundamental.itely
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / nl / learning / fundamental.itely
1 @c -*- coding: utf-8; mode: texinfo; fill-column: 60 -*-
2
3 @ignore
4     Translation of GIT committish: 12c6693055728e69dce5c4e5a4a2b5f71180a5e2
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c Translator: Jan Nieuwenhuizen
12 @c Translation checker:
13 @c Translation checker committish:
14
15 @c \version "2.19.21"
16
17 @node Fundamentele concepten
18 @translationof Fundamental concepts
19 @chapter Fundamentele concepten
20
21 In het Leerboek hebben we gezien hoe je prachtig geprinte
22 muziek maakt van een eenvoudig tekstbestand.  Dit hoofdstuk
23 introduceert de achterliggende concepten en benodigde
24 technieken voor het maken van ingewikkeldere partituren die
25 er net zo mooi uitzien.
26
27 @menu
28 * Hoe LilyPond-invoerbestanden werken::
29 * Voices contain music::
30 * Contexts and engravers::
31 * Extending the templates::
32 @end menu
33
34
35 @node Hoe LilyPond-invoerbestanden werken
36 @translationof How LilyPond input files work
37 @section Hoe LilyPond-invoerbestanden werken
38
39 Het LilyPond invoerformaat is tamelijk vrij, wat ervaren
40 gebruikers veel flexibiliteit geeft hun bestanden te
41 structureren zoals ze dat wensen.  Deze flexibiliteit kan
42 verwarrend zijn voor nieuwe gebruikers.  Deze paragraaf legt
43 het een en ander uit over deze structuur.  Om het leesbaar
44 te houden worden details weggelaten.  Een complete
45 beschrijving van het invoerformaat is te vinden in
46 @ruser{File structure}.
47
48 @menu
49 * Inleiding in de LilyPond-bestandsstructuur::
50 * Score is a (single) compound musical expression::
51 * Nesting music expressions::
52 * On the un-nestedness of brackets and ties::
53 @end menu
54
55 @node Inleiding in de LilyPond-bestandsstructuur
56 @translationof Introduction to the LilyPond file structure
57 @subsection Inleiding in de LilyPond-bestandsstructuur
58
59 @cindex invoerformaat
60 @cindex bestandsstructuur
61
62 Een basisvoorbeeld van een LilyPond-invoerbestand is
63
64 @example
65 \version @w{"@version{}"}
66
67 \header @{ @}
68
69 \score @{
70   @var{...samengestelde muziekuitdrukking...}  % alle muziek komt hier!
71   \layout @{ @}
72   \midi @{ @}
73 @}
74 @end example
75
76 @noindent
77 Er zijn veel variaties op dit basispatroon maar dit
78 voorbeeld dient als een handig beginpunt.
79
80 @funindex \book
81 @funindex boek
82 @funindex \score
83 @funindex partituur
84 @cindex boek
85 @cindex partituur
86
87 Tot nu toe heeft geen van de voorbeelden het
88 @code{\score@{@}}-commando gebruikt.  Dit kan omdat LilyPond
89 automatisch de extra commando's toevoegt die benodigt zijn
90 als je het eenvoudige invoer geeft.  LilyPond behandelt invoer
91 zoals dit:
92
93 @example
94 \relative @{
95   c''4 a d c
96 @}
97 @end example
98
99 @noindent
100 als een afkorting voor dit:
101
102 @example
103 \book @{
104   \score @{
105     \new Staff @{
106       \new Voice @{
107         \relative @{
108           c''4 a b c
109         @}
110       @}
111     @}
112     \layout @{ @}
113   @}
114 @}
115 @end example
116
117 Anders gezegd, als de invoer een enkelvoudige
118 muziekuitdrukking bevat, interpreteert LilyPond het bestand
119 alsof die muziekuitdrukking ingepakt is in bovenstaande
120 commando's.
121
122 @cindex impliciete contexten
123 @cindex contexten, impliciet
124
125 @strong{Een kleine waarschuwing!} In veel van de voorbeelden
126 in de LilyPond-documentatie worden de @code{\new Staff}- en
127 @code{\new Voice}-commando's weggelaten en worden ze
128 impliciet aangemaakt.  Voor eenvoudige voorbeelden werkt dat
129 goed, maar voor ingewikkelde voorbeelden, vooral wanneer
130 additionele commando's worden gebruikt, kan het impliciete
131 aanmaken van contexten verrassende resultaten opleveren,
132 zoals extra ongewenste notebalken.  Hoe je contexten
133 expliciet specificeert, wordt uitgelegd in @ref{Contexts and
134 engravers}.
135
136 @warning{Voor het invoeren van meer dan enkele regels muziek
137 wordt aangeraden altijd notenbalken en stemmen expliciet te
138 specificeren.}
139
140 Laten we terugkeren naar het eerste voorbeeld en het
141 @code{\score}-commando beter bekijken.
142
143 Een @code{\score}-blok moet altijd precies één
144 muziekuitdrukking bevatten, en die moet direct na het
145 @code{\score}-commando staan.  Herrinner je dat een
146 muziekuitdrukking alles kan zijn van een enkele noot
147 tot een enorme samengestelde uitdrukking zoals
148
149 @example
150 @{
151   \new StaffGroup <<
152     @var{...vul de volledige partituur van een Wagner opera hier in...}
153   >>
154 @}
155 @end example
156
157 @noindent
158 Omdat alles tussen @code{@{ ... @}} staat, telt het als één
159 muziekuitdrukking.
160
161 Zoals we eerder al zagen, kan het @code{\score}-blok
162 allerlei andere dingen bevatten, zoals
163
164 @example
165 \score @{
166   @{ c'4 a b c' @}
167   \header @{ @}
168   \layout @{ @}
169   \midi @{ @}
170 @}
171 @end example
172
173 @funindex \header
174 @funindex kop
175 @funindex \layout
176 @funindex layout
177 @funindex \midi
178 @funindex midi
179 @cindex kop
180 @cindex opmaak
181 @cindex midi
182
183 @noindent
184 Merk op dat deze drie commando's -- @code{\header},
185 @code{\layout} en @code{\midi} -- speciaal zijn: in
186 tegenstelling tot veel andere commando's die met een
187 backslash (@code{\}) beginnen zijn het @emph{geen}
188 muziekuitdrukkingen en ze zijn ook geen onderdeel van een
189 muziekuitdrukking.  Ze kunnen zowel binnen als buiten het
190 @code{\score}-blok worden geplaatst.  Deze commando's worden
191 gewoonlijk dan ook buiten het @code{\score}-blok gezet
192 -- bijvoorbeeld, @code{\header} staat meestal boven het
193 @code{\score}-commando, zoals het in eerste voorbeeld van
194 deze paragraaf.
195
196 De twee andere commando's die je niet eerder hebt gezien
197 zijn @code{\layout @{ @}} en @code{\midi @{@}}.  Als deze
198 gebruikt worden als hierboven laten ze LilyPond
199 respectievelijk geprinte- en MIDI-uitvoer genereren.  Een
200 volledige beschrijving van deze commando's is te vinden in
201 de Notatiehandleiding -- @ruser{Score layout}, en
202 @ruser{Creating MIDI files}.
203
204 @cindex partituren, verscheidene
205 @cindex boek blok, impliciet
206 @cindex impliciet boek blok
207 @funindex \book
208 @funindex boek
209
210 Je kunt meer dan een @code{\score}-blok gebruiken.  Elk
211 wordt behandeld als een afzonderlijke partituur en ze worden
212 allemaal samengevoegd in een enkel uitvoerbestand.  Een
213 @code{\book}-commando is niet nodig -- die wordt impliciet
214 aangemaakt.  Echter, als je afzonderlijke uitvoerbestanden
215 vanuit een @file{.ly}-bestand wil maken, dan moet het
216 @code{\book}-commando worden gebruikt om de verschillende
217 secties aan te geven: elk @code{\book}-blok produceert
218 een apart uitvoerbestand.
219
220 Samengevat:
221
222 Elk @code{\book}-blok geeft een apart uitvoerbestand (bijv.,
223 een PDF-bestand).  Als je er geen expliciet toevoegt, stopt
224 LilyPond je gehele invoercode impliciet in een
225 @code{\book}-blok.
226
227 Elk @code{\score}-blok is een apart brok muziek binnen een
228 @code{\book}-blok.
229
230 @cindex opmaakblok, effect van locatie
231
232 Elk @code{\layout}-blok beïnvloedt het @code{\score}- of
233 @code{\book}-blok waarin het voorkomt -- d.w.z., een
234 @code{\layout}-blok binnen een @code{\score}-blok heeft
235 uitsluitend invloed op dat @code{\score}-blok, maar een
236 @code{\layout}-blok buiten een @code{\score}-blok (en dus
237 binnen een @code{\book}-blok, expliciet danwel impliciet)
238 beïnvloedt elke @code{\score} in dat @code{\book}.
239
240 Voor details zie @ruser{Multiple scores in a book}.
241
242 @cindex variabelen
243
244 Een andere manier van afkorten is het gebruik van
245 variabelen, zoals getoond in @ref{Stukken organiseren met
246 variabelen}.  Alle sjablonen gebruiken dat:
247
248 @example
249 melodie = \relative @{
250   c'4 a b c
251 @}
252
253 \score @{
254   \melodie
255 @}
256 @end example
257
258 Als LilyPond naar dit bestand kijkt, neemt het de waarde van
259 @code{melodie} (alles na het isgelijkteken) en voegt die in
260 zodra ergens @code{\melody} staat.  De naam van de variable
261 heeft verder geen speciale betekenis -- het kan net zo goed
262 @code{melodie}, @code{globaal}, @code{TijdSleutel},
263 @code{pianorechterhand}, of iets anders zijn.  Bedenk dat je
264 vrijwel elke naam kunt gebruiken die je wilt, zolang die
265 maar bestaat uit letters en het niet de naam is van een
266 LilyPond-commando.  Voor meer details, zie @ref{Saving
267 typing with variables and functions}.  De precieze
268 beperkingen van variabelenamen staan beschreven in
269 @ruser{File structure}.
270
271
272 @seealso
273 Voor een volledige definitie van het invoerformaat, zie
274 @ruser{File structure}.
275
276
277 @node Score is a (single) compound musical expression
278 @subsection Score is a (single) compound musical expression
279
280 @funindex \score
281 @funindex score
282 @cindex score
283 @cindex contents of a score block
284 @cindex score block, contents of
285 @cindex compound music expression
286 @cindex music expression, compound
287
288 We saw the general organization of LilyPond input files in the
289 previous section, @ref{Introduction to the LilyPond file structure}.
290 But we seemed to skip over the most important part: how do we figure
291 out what to write after @code{\score}?
292
293 We didn't skip over it at all.  The big mystery is simply that
294 there @emph{is} no mystery.  This line explains it all:
295
296 @quotation
297 @emph{A @code{\score} block must begin with a compound music expression.}
298 @end quotation
299
300 @noindent
301 To understand what is meant by a music expression and a compound
302 music expression, you may find it useful to review the tutorial,
303 @ref{Music expressions explained}.  In that section, we saw how to
304 build big music expressions from small pieces -- we started from
305 notes, then chords, etc.  Now we're going to start from a big
306 music expression and work our way down.  For simplicity, we'll use
307 just a singer and piano in our example.  We don't need a
308 @code{StaffGroup} for this ensemble, which simply groups a number
309 of staves together with a bracket at the left, but we do need
310 staves for a singer and a piano, though.
311
312 @example
313 \score @{
314   <<
315     \new Staff = "singer" <<
316     >>
317     \new PianoStaff = "piano" <<
318     >>
319   >>
320   \layout @{ @}
321 @}
322 @end example
323
324 Here we have given names to the staves -- @qq{singer} and
325 @qq{piano}.  This is not essential here, but it is a useful habit
326 to cultivate so that you can see at a glance what each stave is
327 for.
328
329 Remember that we use @code{<< ... >>} instead of @code{@{ ... @}} to
330 show simultaneous music.  This causes the vocal part and piano part
331 to appear one above the other in the score.  The @code{<< ... >>}
332 construct would not be necessary for the Singer staff in the example
333 above if it were going to contain only one sequential music
334 expression, but @code{<< ... >>} rather than braces is necessary if
335 the music in the Staff is to contain two or more simultaneous
336 expressions, e.g. two simultaneous Voices, or a Voice with lyrics.
337 We're going to have a voice with lyrics, so angle brackets are
338 required.  We'll add some real music later; for now let's just put
339 in some dummy notes and lyrics.  If you've forgotten how to add lyrics
340 you may wish to review @code{\addlyrics} in @ref{Setting simple songs}.
341
342 @lilypond[verbatim,quote,ragged-right]
343 \score {
344   <<
345     \new Staff = "singer" <<
346       \new Voice = "vocal" { c'1 }
347       \addlyrics { And }
348     >>
349     \new PianoStaff = "piano" <<
350       \new Staff = "upper" { c'1 }
351       \new Staff = "lower" { c'1 }
352     >>
353   >>
354   \layout { }
355 }
356 @end lilypond
357
358 Now we have a lot more details.  We have the singer's staff: it
359 contains a @code{Voice} (in LilyPond, this term refers to a set of
360 notes, not necessarily vocal notes -- for example, a violin
361 generally plays one voice) and some lyrics.  We also have a piano
362 staff: it contains an upper staff (right hand) and a lower staff
363 (left hand), although the lower staff has yet to be given a bass
364 clef.
365
366 At this stage, we could start filling in notes.  Inside the curly
367 braces next to @code{\new Voice = "vocal"}, we could start writing
368
369 @example
370 \relative @{
371   r4 d''8\noBeam g, c4 r
372 @}
373 @end example
374
375 But if we did that, the @code{\score} section would get pretty
376 long, and it would be harder to understand what was happening.  So
377 let's use variables instead.  These were introduced at the end
378 of the previous section, remember?  To ensure the contents of the
379 @code{text} variable are interpreted as lyrics we preface them with
380 @code{\lyricmode}.  Like @code{\addlyrics}, this switches the input
381 mode to lyrics.  Without that, LilyPond would try to interpret the
382 contents as notes, which would generate errors.  (Several other
383 input modes are available, see @ruser{Input modes}.)
384
385 So, adding a few notes and a bass clef for the left hand, we now
386 have a piece of real music:
387
388 @lilypond[verbatim,quote,ragged-right]
389 melody = \relative { r4 d''8\noBeam g, c4 r }
390 text   = \lyricmode { And God said, }
391 upper  = \relative { <g' d g,>2~ <g d g,> }
392 lower  = \relative { b,2 e }
393
394 \score {
395   <<
396     \new Staff = "singer" <<
397       \new Voice = "vocal" { \melody }
398       \addlyrics { \text }
399     >>
400     \new PianoStaff = "piano" <<
401       \new Staff = "upper" { \upper }
402       \new Staff = "lower" {
403         \clef "bass"
404         \lower
405       }
406     >>
407   >>
408   \layout { }
409 }
410 @end lilypond
411
412 When writing (or reading) a @code{\score} section, just take it
413 slowly and carefully.  Start with the outer level, then work on
414 each smaller level.  It also really helps to be strict with
415 indentation -- make sure that each item on the same level starts
416 on the same horizontal position in your text editor.
417
418
419 @seealso
420 Notation Reference: @ruser{Structure of a score}.
421
422
423 @node Nesting music expressions
424 @subsection Nesting music expressions
425
426 @cindex staves, temporary
427 @cindex temporary staves
428 @cindex ossias
429
430 It is not essential to declare all staves at the beginning; they may
431 be introduced temporarily at any point.  This is particularly useful
432 for creating ossia sections -- see @rglos{ossia}.  Here is a simple
433 example showing how to introduce a new staff temporarily for the
434 duration of three notes:
435
436 @lilypond[verbatim,quote,ragged-right]
437 \new Staff {
438   \relative {
439     r4 g'8 g c4 c8 d |
440     e4 r8
441     <<
442       { f8 c c }
443       \new Staff {
444         f8 f c
445       }
446     >>
447     r4 |
448   }
449 }
450 @end lilypond
451
452 @noindent
453 Note that the size of the clef is the same as a clef printed
454 following a clef change -- slightly smaller than the clef
455 at the beginning of the line.  This is usual for clefs printed
456 in the middle of a line.
457
458 @cindex staff, positioning
459
460 The ossia section may be placed above the staff
461 as follows:
462
463 @lilypond[verbatim,quote,ragged-right]
464 \new Staff = "main" {
465   \relative {
466     r4 g'8 g c4 c8 d |
467     e4 r8
468     <<
469       { f8 c c }
470       \new Staff \with {
471         alignAboveContext = #"main"
472       } { f8 f c }
473     >>
474     r4 |
475   }
476 }
477 @end lilypond
478
479 This example uses @code{\with}, which will be explained more
480 fully later.  It is a means of modifying the default behavior
481 of a single Staff.  Here it says that the new staff should be
482 placed above the staff called @qq{main} instead of the default
483 position which is below.
484
485
486 @seealso
487 Ossia are often written without clef and without
488 time signature and are usually in a smaller font.
489 These require further commands which
490 have not yet been introduced.  See @ref{Size of objects},
491 and @ruser{Ossia staves}.
492
493
494 @node On the un-nestedness of brackets and ties
495 @subsection On the un-nestedness of brackets and ties
496
497 @cindex brackets, nesting
498 @cindex bracket types
499 @cindex brackets, enclosing vs. marking
500
501 You have already met a number of different types of bracket and
502 bracket-like constructs in writing the input file to LilyPond.
503 These obey different rules which can be confusing at first.
504 Let's first review the different types of brackets and bracket-like
505 constructs.
506
507 @c attempt to force this onto a new page
508 @need 50
509 @multitable @columnfractions .3 .7
510 @headitem Bracket Type
511   @tab Function
512 @item @code{@{ .. @}}
513   @tab Encloses a sequential segment of music
514 @item @code{< .. >}
515   @tab Encloses the notes of a chord
516 @item @code{<< .. >>}
517   @tab Encloses simultaneous music expressions
518 @item @code{( .. )}
519   @tab Marks the start and end of a slur
520 @item @code{\( .. \)}
521   @tab Marks the start and end of a phrasing slur
522 @item @code{[ .. ]}
523   @tab Marks the start and end of a manual beam
524 @end multitable
525
526 To these we should add other constructs which generate lines
527 between or across notes: ties (marked by a tilde, @code{~}),
528 tuplets written as @code{\times x/y @{..@}}, and grace notes
529 written as @code{\grace@{..@}}.
530
531 Outside LilyPond, the conventional use of brackets requires the
532 different types to be properly nested, like this, @code{<< [ @{ ( .. )
533 @} ] >>}, with the closing brackets being encountered in exactly the
534 opposite order to the opening brackets.  This @strong{is} a
535 requirement for the three types of bracket described by the word
536 @q{Encloses} in the table above -- they must nest properly.  However,
537 the remaining bracket-like constructs, described with the word
538 @q{Marks} in the table above together with ties and tuplets, do
539 @strong{not} have to nest properly with any of the brackets or
540 bracket-like constructs.  In fact, these are not brackets in
541 the sense that they enclose something -- they are simply markers to
542 indicate where something starts and ends.
543
544 So, for example, a phrasing slur can start before a manually
545 inserted beam and end before the end of the beam -- not very
546 musical, perhaps, but possible:
547
548 @lilypond[quote,verbatim,ragged-right,relative=2]
549 g8\( a b[ c b\) a] g4
550 @end lilypond
551
552 In general, different kinds of brackets, bracket-like constructs,
553 and those implied by tuplets, ties and grace notes, may be mixed
554 freely.  This example shows a beam extending into a tuplet (line 1),
555 a slur extending into a tuplet (line 2), a beam and a slur
556 extending into a tuplet, a tie crossing two tuplets, and a
557 phrasing slur extending out of a tuplet (lines 3 and 4).
558
559 @lilypond[quote,verbatim,ragged-right,relative=1]
560 r16[ g \tuplet 3/2 { r16 e'8] }
561 g,16( a \tuplet 3/2 { b16 d) e }
562 g,8[( a \tuplet 3/2 { b8 d) e~] } |
563 \tuplet 5/4 { e32\( a, b d e } a4.\)
564 @end lilypond
565
566
567 @node Voices contain music
568 @section Voices contain music
569
570 Singers need voices to sing, and so does LilyPond.
571 The actual music for all instruments in a score
572 is contained in Voices -- the most fundamental
573 of all LilyPond's concepts.
574
575 @menu
576 * I'm hearing Voices::
577 * Explicitly instantiating voices::
578 * Voices and vocals::
579 @end menu
580
581 @node I'm hearing Voices
582 @subsection I'm hearing Voices
583
584 @cindex polyphony
585 @cindex layers
586 @cindex multiple voices
587 @cindex voices, multiple
588 @cindex Voice context
589 @cindex context, Voice
590 @cindex simultaneous music
591 @cindex music, simultaneous
592 @cindex concurrent music
593 @cindex music, concurrent
594 @cindex voices vs. chords
595 @cindex chords vs. voices
596
597 The lowest, most fundamental or innermost layers in a LilyPond
598 score are called @q{Voice contexts} or just @q{Voices} for short.
599 Voices are sometimes called @q{layers} in other notation
600 packages.
601
602 In fact, a Voice layer or context is the only one which can contain
603 music.  If a Voice context is not explicitly declared one is created
604 automatically, as we saw at the beginning of this chapter.  Some
605 instruments such as an Oboe can play only one note at a time.  Music
606 written for such instruments requires just a single voice.  Instruments
607 which can play more than one note at a time like the piano will often
608 require multiple voices to encode the different concurrent notes and
609 rhythms they are capable of playing.
610
611 A single voice can contain many notes in a chord, of course,
612 so when exactly are multiple voices needed?  Look first at
613 this example of four chords:
614
615 @lilypond[quote,verbatim,ragged-right,relative=1]
616 \key g \major
617 <d g>4 <d fis> <d a'> <d g>
618 @end lilypond
619
620 This can be expressed using just the single angle bracket chord
621 symbols, @code{< ... >}, and for this just a single voice is
622 needed.  But suppose the F-sharp were actually an eighth-note
623 followed by an eighth-note G, a passing note on the way to the A?
624 Now we have two notes which start at the same time but have
625 different durations: the quarter-note D and the eighth-note
626 F-sharp.  How are these to be coded?  They cannot be written as
627 a chord because all the notes in a chord must have the same
628 duration.  And they cannot be written as two sequential notes
629 as they need to start at the same time.  This is when two
630 voices are required.
631
632 Let us see how this is done in LilyPond input syntax.
633
634 @funindex << \\ >>
635 @funindex \\
636
637 The easiest way to enter fragments with more than one voice on a
638 staff is to enter each voice as a sequence (with @code{@{...@}}),
639 and combine them simultaneously with angle brackets, @code{<<...>>}.
640 The fragments must also be separated with double backward slashes,
641 @code{\\}, to place them in separate voices.  Without these, the
642 notes would be entered into a single voice, which would usually
643 cause errors.  This technique is particularly suited to pieces of
644 music which are largely homophonic with occasional short sections
645 of polyphony.
646
647 Here's how we split the chords above into two voices and add both
648 the passing note and a slur:
649
650 @lilypond[quote,verbatim,ragged-right,relative=2]
651 \key g \major
652 %    Voice "1"               Voice "2"
653 << { g4 fis8( g) a4 g } \\ { d4 d d d }  >>
654 @end lilypond
655
656 Notice how the stems of the second voice now point down.
657
658 Here's another simple example:
659
660 @lilypond[quote,verbatim,ragged-right,relative=2]
661 \key d \minor
662 %    Voice "1"             Voice "2"
663 << { r4 g g4. a8 }    \\ { d,2 d4 g }       >> |
664 << { bes4 bes c bes } \\ { g4 g g8( a) g4 } >> |
665 << { a2. r4 }         \\ { fis2. s4 }       >> |
666 @end lilypond
667
668 It is not necessary to use a separate @code{<< \\ >>} construct
669 for each bar.  For music with few notes in each bar this layout
670 can help the legibility of the code, but if there are many
671 notes in each bar it may be better to split out each voice
672 separately, like this:
673
674 @lilypond[quote,verbatim,ragged-right,relative=2]
675 \key d \minor
676 << {
677   % Voice "1"
678   r4 g g4. a8 |
679   bes4 bes c bes |
680   a2. r4 |
681 } \\ {
682   % Voice "2"
683   d,2 d4 g |
684   g4 g g8( a) g4 |
685   fis2. s4 |
686 } >>
687 @end lilypond
688
689
690 @cindex voices, naming
691 @cindex voices crossing brackets
692 @cindex slurs crossing brackets
693 @cindex ties crossing brackets
694
695 This example has just two voices, but the same construct may be
696 used to encode three or more voices by adding more back-slash
697 separators.
698
699 The Voice contexts bear the names @code{"1"}, @code{"2"}, etc.
700 The first contexts set the @emph{outer} voices, the highest
701 voice in context @code{"1"} and the lowest voice in context
702 @code{"2"}.  The inner voices go in contexts @code{"3"} and
703 @code{"4"}.  In each of these contexts, the vertical direction
704 of slurs, stems, ties, dynamics etc., is set appropriately.
705
706 @lilypond[quote,verbatim]
707 \new Staff \relative {
708   % Main voice
709   c'16 d e f
710   %    Voice "1"     Voice "2"                Voice "3"
711   << { g4 f e } \\ { r8 e4 d c8~ } >> |
712   << { d2 e }   \\ { c8 b16 a b8 g~ 2 } \\ { s4 b c2 } >> |
713 }
714 @end lilypond
715
716 These voices are all separate from the main voice that contains
717 the notes just outside the @code{<< .. >>} construct.  Let's call
718 this the @emph{simultaneous construct}.  Slurs and ties may only
719 connect notes within the same voice, so slurs and ties cannot go
720 into or out of a simultaneous construct.  Conversely,
721 parallel voices from separate simultaneous constructs on the same
722 staff are the same voice.  Other voice-related properties also
723 carry across simultaneous constructs.  Here is the same example,
724 with different colors and note heads for each voice.  Note that
725 changes in one voice do not affect other voices, but they do
726 persist in the same voice later.  Note also that tied notes may be
727 split across the same voices in two constructs, shown here in the
728 blue triangle voice.
729
730 @lilypond[quote,verbatim]
731 \new Staff \relative {
732   % Main voice
733   c'16 d e f
734   <<  % Bar 1
735     {
736       \voiceOneStyle
737       g4 f e
738     }
739   \\
740     {
741       \voiceTwoStyle
742       r8 e4 d c8~
743     }
744   >> |
745   <<  % Bar 2
746      % Voice 1 continues
747     { d2 e }
748   \\
749      % Voice 2 continues
750     { c8 b16 a b8 g~ 2 }
751   \\
752     {
753       \voiceThreeStyle
754       s4 b c2
755     }
756   >> |
757 }
758 @end lilypond
759
760 @funindex \voiceOneStyle
761 @funindex \voiceTwoStyle
762 @funindex \voiceThreeStyle
763 @funindex \voiceFourStyle
764 @funindex \voiceNeutralStyle
765
766 The commands @code{\voiceXXXStyle} are mainly intended for use in
767 educational documents such as this one.  They modify the color
768 of the note head, the stem and the beams, and the style of the
769 note head, so that the voices may be easily distinguished.
770 Voice one is set to red diamonds, voice two to blue triangles,
771 voice three to green crossed circles, and voice four (not used
772 here) to magenta crosses;  @code{\voiceNeutralStyle} (also not
773 used here) reverts the style back to the default.
774 We shall see later how commands like these may be created by the
775 user.
776 See @ref{Visibility and color of objects} and
777 @ref{Using variables for tweaks}.
778
779 @cindex polyphony and relative note entry
780 @cindex relative note entry and polyphony
781
782 Polyphony does not change the relationship of notes within a
783 @code{\relative} block.  Each note is still calculated relative to
784 the note immediately preceding it, or to the first note of the
785 preceding chord.  So in
786
787 @example
788 \relative c' @{ noteA << < noteB noteC > \\ noteD >> noteE @}
789 @end example
790
791 @noindent
792 @code{noteB} is relative to @code{noteA}                      @*
793 @code{noteC} is relative to @code{noteB}, not @code{noteA};   @*
794 @code{noteD} is relative to @code{noteB}, not @code{noteA} or
795 @code{noteC};                                                 @*
796 @code{noteE} is relative to @code{noteD}, not @code{noteA}.
797
798 An alternative way, which may be clearer if the notes in the
799 voices are widely separated, is to place a @code{\relative}
800 command at the start of each voice:
801
802 @example
803 \relative c' @{ noteA ... @}
804 <<
805   \relative c'' @{ < noteB noteC > ... @}
806 \\
807   \relative g' @{ noteD ... @}
808 >>
809 \relative c' @{ noteE ... @}
810 @end example
811
812 Let us finally analyze the voices in a more complex piece of music.
813 Here are the notes from the first two bars of the second of Chopin's
814 Deux Nocturnes, Op 32.  This example will be used at later stages in
815 this and the next chapter to illustrate several techniques for
816 producing notation, so please ignore for now anything in the
817 underlying code which looks mysterious and concentrate just on the
818 music and the voices -- the complications will all be explained in
819 later sections.
820
821 @c The following should appear as music without code
822 @lilypond[quote,ragged-right]
823 \new Staff \relative {
824   \key aes \major
825   <<  % Voice one
826     { c''2 aes4. bes8 }
827   \\  % Voice two
828     {
829       % Ignore these for now - they are explained in Ch 4
830       \once \override NoteColumn.ignore-collision = ##t
831       <ees, c>2
832       \once \override NoteColumn.force-hshift = #0.5
833       des2
834     }
835   \\  % No voice three
836   \\  % Voice four
837     {
838       \override NoteColumn.force-hshift = #0
839       aes'2 f4 fes
840     }
841   >> |
842   <c ees aes c>1 |
843 }
844 @end lilypond
845
846 The direction of the stems is often used to indicate the continuity of
847 two simultaneous melodic lines.  Here the stems of the highest notes
848 are all pointing up and the stems of the lower notes are all pointing
849 down.  This is the first indication that more than one voice is
850 required.
851
852 But the real need for multiple voices arises when notes
853 which start at the same time have different durations.
854 Look at the notes which start at beat three in the first
855 bar.  The A-flat is a dotted quarter note, the F is a
856 quarter note and the D-flat is a half note.  These
857 cannot be written as a chord as all the notes in a chord
858 must have the same duration.  Neither can they be written
859 as sequential notes, as they must start at the same time.
860 This section of the bar requires three voices, and the
861 normal practice would be to write the whole bar as three
862 voices, as shown below, where we have used different note heads
863 and colors for the three voices.  Again, the code behind this
864 example will be explained later, so ignore anything you do
865 not understand.
866
867 @c The following should appear as music without code
868 @c The three voice styles should be defined in -init
869 @lilypond[quote,ragged-right]
870 \new Staff \relative c'' {
871   \key aes \major
872   <<
873     {  % Voice one
874       \voiceOneStyle
875       c2 aes4. bes8
876     }
877   \\  % Voice two
878     { \voiceTwoStyle
879       % Ignore these for now - they are explained in Ch 4
880       \once \override NoteColumn.ignore-collision = ##t
881       <ees, c>2
882       \once \override NoteColumn.force-hshift = #0.5
883       des2
884     }
885   \\  % No Voice three (we want stems down)
886   \\  % Voice four
887     { \voiceThreeStyle
888       \override NoteColumn.force-hshift = #0
889       aes'2 f4 fes
890     }
891   >> |
892   <c ees aes c>1 |
893 }
894 @end lilypond
895
896
897 Let us try to encode this music from scratch.  As we
898 shall see, this encounters some difficulties.  We begin as
899 we have learnt, using the @code{<< \\  >>} construct to
900 enter the music of the first bar in three voices:
901
902 @lilypond[quote,verbatim,ragged-right]
903 \new Staff \relative {
904   \key aes \major
905   <<
906     { c''2 aes4. bes8 } \\ { <ees, c>2 des } \\ { aes'2 f4 fes }
907   >> |
908   <c ees aes c>1 |
909 }
910 @end lilypond
911
912 @cindex stem down
913 @cindex voices and stem directions
914 @cindex stem directions and voices
915 @cindex stem up
916
917 The stem directions are automatically assigned with the
918 odd-numbered voices taking upward stems and the even-numbered
919 voices downward ones.  The stems for voices 1 and 2 are right,
920 but the stems in voice 3 should go down in this particular piece
921 of music.  We can correct this by skipping voice three
922 and placing the music in voice four.  This is done by simply
923 adding another pair of @code{\\}.
924
925 @lilypond[quote,verbatim,ragged-right]
926 \new Staff \relative {
927   \key aes \major
928   <<  % Voice one
929     { c''2 aes4. bes8 }
930   \\  % Voice two
931     { <ees, c>2 des }
932   \\  % Omit Voice three
933   \\  % Voice four
934     { aes'2 f4 fes }
935   >> |
936   <c ees aes c>1 |
937 }
938 @end lilypond
939
940 @noindent
941 We see that this fixes the stem direction, but the horizontal
942 placement of notes is not what we want.  LilyPond shifts the
943 inner notes when they or their stems would collide with outer
944 voices, but this is not appropriate for piano music.  In other
945 situations, the shifts LilyPond applies might fail to clear
946 the collisions.  LilyPond provides several ways to adjust the
947 horizontal placing of notes.  We are not quite ready yet to see
948 how to correct this, so we shall leave this problem until a
949 later section --- see the @code{force-hshift} property in
950 @ref{Fixing overlapping notation}.
951
952 @warning{Lyrics, spanners (such as slurs, ties, hairpins etc.) cannot be
953 created @q{across} voices.}
954
955
956 @seealso
957 Notation Reference: @ruser{Multiple voices}.
958
959
960 @node Explicitly instantiating voices
961 @subsection Explicitly instantiating voices
962
963 @funindex \voiceOne
964 @funindex voiceOne
965 @funindex \voiceTwo
966 @funindex voiceTwo
967 @funindex \voiceThree
968 @funindex voiceThree
969 @funindex \voiceFour
970 @funindex voiceFour
971 @funindex \oneVoice
972 @funindex oneVoice
973 @funindex \new Voice
974 @cindex voice contexts, creating
975
976 Voice contexts can also be created manually
977 inside a @code{<< >>} block to create polyphonic music, using
978 @code{\voiceOne} @dots{} @code{\voiceFour} to indicate the required
979 directions of stems, slurs, etc.  In longer scores this method
980 is clearer, as it permits the voices to be separated and to be
981 given more descriptive names.
982
983 Specifically, the construct @code{<< \\ >>} which we used in
984 the previous section:
985
986 @example
987 \new Staff @{
988   \relative @{
989     << @{ e'4 f g a @} \\ @{ c,4 d e f @} >>
990   @}
991 @}
992 @end example
993
994 @noindent
995 is equivalent to
996
997 @example
998 \new Staff <<
999   \new Voice = "1" @{ \voiceOne \relative @{ e'4 f g a @} @}
1000   \new Voice = "2" @{ \voiceTwo \relative @{ c'4 d e f @} @}
1001 >>
1002 @end example
1003
1004 Both of the above would produce
1005
1006 @c The following example should not display the code
1007 @lilypond[ragged-right,quote]
1008 \new Staff <<
1009   \new Voice = "1" { \voiceOne \relative { e'4 f g a } }
1010   \new Voice = "2" { \voiceTwo \relative { c'4 d e f } }
1011 >>
1012 @end lilypond
1013
1014 @cindex voices, reverting to single
1015 @cindex reverting to a single voice
1016
1017 The @code{\voiceXXX} commands set the direction of stems, slurs,
1018 ties, articulations, text annotations, augmentation dots of dotted
1019 notes, and fingerings.  @code{\voiceOne} and @code{\voiceThree}
1020 make these objects point upwards, while @code{\voiceTwo} and
1021 @code{\voiceFour} make them point downwards.  These commands also
1022 generate a horizontal shift for each voice when this is required
1023 to avoid clashes of note heads.  The command @code{\oneVoice}
1024 reverts the settings back to the normal values for a single voice.
1025
1026 Let us see in some simple examples exactly what effect
1027 @code{\oneVoice}, @code{\voiceOne} and @code{voiceTwo} have on
1028 markup, ties, slurs, and dynamics:
1029
1030 @lilypond[quote,ragged-right,verbatim]
1031 \relative {
1032   % Default behavior or behavior after \oneVoice
1033   c'4 d8~ 8 e4( f | g4 a) b-> c |
1034 }
1035 @end lilypond
1036
1037 @lilypond[quote,ragged-right,verbatim]
1038 \relative c' {
1039   \voiceOne
1040   c4 d8~ 8 e4( f | g4 a) b-> c |
1041   \oneVoice
1042   c,4 d8~ 8 e4( f | g4 a) b-> c |
1043 }
1044 @end lilypond
1045
1046 @lilypond[quote,ragged-right,verbatim]
1047 \relative c' {
1048   \voiceTwo
1049   c4 d8~ 8 e4( f | g4 a) b-> c |
1050   \oneVoice
1051   c,4 d8~ 8 e4( f | g4 a) b-> c |
1052 }
1053 @end lilypond
1054
1055 Now let's look at three different ways to notate the same passage of
1056 polyphonic music, each of which is advantageous in different
1057 circumstances, using the example from the previous section.
1058
1059 An expression that appears directly inside a @code{<< >>} belongs to the
1060 main voice (but, note, @strong{not} in a @code{<< \\ >>} construct).
1061 This is useful when extra voices appear while the main voice is playing.
1062 Here is a more correct rendition of our example.  The red diamond-shaped
1063 notes demonstrate that the main melody is now in a single voice context,
1064 permitting a phrasing slur to be drawn over them.
1065
1066 @lilypond[quote,ragged-right,verbatim]
1067 \new Staff \relative c' {
1068   \voiceOneStyle
1069   % This section is homophonic
1070   c16^( d e f
1071   % Start simultaneous section of three voices
1072   <<
1073     % Continue the main voice in parallel
1074     { g4 f e | d2 e) | }
1075     % Initiate second voice
1076     \new Voice {
1077       % Set stems, etc., down
1078       \voiceTwo
1079       r8 e4 d c8~ | 8 b16 a b8 g~ 2 |
1080     }
1081     % Initiate third voice
1082     \new Voice {
1083       % Set stems, etc, up
1084       \voiceThree
1085       s2. | s4 b c2 |
1086     }
1087   >>
1088 }
1089 @end lilypond
1090
1091 @cindex nesting music expressions
1092 @cindex nesting simultaneous constructs
1093 @cindex nesting voices
1094 @cindex voices, temporary
1095 @cindex voices, nesting
1096
1097 More deeply nested polyphony constructs are possible, and if a
1098 voice appears only briefly this might be a more natural way to
1099 typeset the music:
1100
1101 @lilypond[quote,ragged-right,verbatim]
1102 \new Staff \relative {
1103   c'16^( d e f
1104   <<
1105     { g4 f e | d2 e) | }
1106     \new Voice {
1107       \voiceTwo
1108       r8 e4 d c8~ |
1109       <<
1110         { c8 b16 a b8 g~ 2 | }
1111         \new Voice {
1112           \voiceThree
1113           s4 b c2 |
1114         }
1115       >>
1116     }
1117   >>
1118 }
1119 @end lilypond
1120
1121 @cindex spacing notes
1122
1123 This method of nesting new voices briefly is useful
1124 when only small sections of the music
1125 are polyphonic, but when the whole staff is largely polyphonic
1126 it can be clearer to use multiple voices throughout, using
1127 spacing notes to step over sections where the voice is silent,
1128 as here:
1129
1130 @lilypond[quote,ragged-right,verbatim]
1131 \new Staff \relative c' <<
1132   % Initiate first voice
1133   \new Voice {
1134     \voiceOne
1135     c16^( d e f g4 f e | d2 e) |
1136   }
1137   % Initiate second voice
1138   \new Voice {
1139     % Set stems, etc, down
1140     \voiceTwo
1141     s4 r8 e4 d c8~ | 8 b16 a b8 g~ 2 |
1142   }
1143   % Initiate third voice
1144   \new Voice {
1145     % Set stems, etc, up
1146     \voiceThree
1147     s1 | s4 b c2 |
1148   }
1149 >>
1150 @end lilypond
1151
1152 @subsubheading Note columns
1153
1154 @cindex note column
1155 @cindex note collisions
1156 @cindex collisions, notes
1157 @cindex shift commands
1158 @funindex \shiftOff
1159 @funindex shiftOff
1160 @funindex \shiftOn
1161 @funindex shiftOn
1162 @funindex \shiftOnn
1163 @funindex shiftOnn
1164 @funindex \shiftOnnn
1165 @funindex shiftOnnn
1166
1167 Closely spaced notes in a chord, or notes occurring at the same
1168 time in different voices, are arranged in two, occasionally more,
1169 columns to prevent the note heads overlapping.  These are called
1170 note columns.  There are separate columns for each voice, and
1171 the currently specified voice-dependent shift is applied to the
1172 note column if there would otherwise be a collision.  This can
1173 be seen in the example above.  In bar 2 the C in voice two is
1174 shifted to the right relative to the D in voice one, and in the
1175 final chord the C in voice three is also shifted to the right
1176 relative to the other notes.
1177
1178 The @code{\shiftOn}, @code{\shiftOnn}, @code{\shiftOnnn}, and
1179 @code{\shiftOff} commands specify the degree to which notes and
1180 chords of the voice should be shifted if a collision
1181 would otherwise occur.  By default, the outer voices (normally
1182 voices one and two) have @code{\shiftOff} specified, while the
1183 inner voices (three and four) have @code{\shiftOn} specified.
1184 When a shift is applied, voices one and three are shifted to
1185 the right and voices two and four to the left.
1186
1187 @code{\shiftOnn} and @code{\shiftOnnn} define further shift
1188 levels which may be specified temporarily to resolve collisions
1189 in complex situations -- see @ref{Real music example}.
1190
1191 A note column can contain just one note (or chord) from a voice
1192 with stems up and one note (or chord) from a voice with stems
1193 down.  If notes from two voices which have their stems in the
1194 same direction are placed at the same position and both voices
1195 have no shift or the same shift specified, the error message
1196 @qq{Too many clashing note columns} will be produced.
1197
1198
1199 @seealso
1200 Notation Reference: @ruser{Multiple voices}.
1201
1202
1203 @node Voices and vocals
1204 @subsection Voices and vocals
1205
1206 Vocal music presents a special difficulty: we need to combine two
1207 expressions -- notes and lyrics.
1208
1209 @funindex \new Lyrics
1210 @funindex \lyricsto
1211 @funindex lyricsto
1212 @funindex Lyrics
1213 @cindex Lyrics context, creating
1214 @cindex lyrics, linking to voice
1215
1216 You have already seen the @code{\addlyrics@{@}} command, which
1217 handles simple scores well.  However, this technique is
1218 quite limited.  For more complex music, you must introduce the
1219 lyrics in a @code{Lyrics} context using @code{\new Lyrics} and
1220 explicitly link
1221 the lyrics to the notes with @code{\lyricsto@{@}}, using the
1222 name assigned to the Voice.
1223
1224 @lilypond[quote,verbatim]
1225 <<
1226   \new Voice = "one" {
1227     \relative c'' {
1228       \autoBeamOff
1229       \time 2/4
1230       c4 b8. a16 | g4. f8 | e4 d | c2 |
1231     }
1232   }
1233   \new Lyrics \lyricsto "one" {
1234     No more let | sins and | sor -- rows | grow. |
1235   }
1236 >>
1237 @end lilypond
1238
1239 Note that the lyrics must be linked to a @code{Voice} context,
1240 @emph{not} a @code{Staff} context.  This is a case where it is
1241 necessary to create @code{Staff} and @code{Voice} contexts
1242 explicitly.
1243
1244 @cindex lyrics and beaming
1245 @cindex beaming and lyrics
1246 @funindex \autoBeamOff
1247 @funindex autoBeamOff
1248
1249 The automatic beaming which LilyPond uses by default works well
1250 for instrumental music, but not so well for music with lyrics,
1251 where beaming is either not required at all or is used to indicate
1252 melismata in the lyrics.  In the example above we use the command
1253 @code{\autoBeamOff} to turn off the automatic beaming.
1254
1255 @funindex \new ChoirStaff
1256 @funindex ChoirStaff
1257 @funindex \lyricmode
1258 @funindex lyricmode
1259 @cindex vocal score structure
1260 @cindex choir staff
1261
1262 Let us reuse the earlier example from Judas Maccabæus to
1263 illustrate this more flexible technique.  We first recast
1264 it to use variables so the music and lyrics can be separated
1265 from the staff structure.  We also introduce a ChoirStaff
1266 bracket.  The lyrics themselves must be introduced with
1267 @code{\lyricmode} to ensure they are interpreted as lyrics
1268 rather than music.
1269
1270 @lilypond[quote,verbatim]
1271 global = { \key f \major \time 6/8 \partial 8 }
1272
1273 SopOneMusic = \relative {
1274   c''8 | c8([ bes)] a a([ g)] f | f'4. b, | c4.~ 4
1275 }
1276 SopOneLyrics = \lyricmode {
1277   Let | flee -- cy flocks the | hills a -- dorn, __
1278 }
1279 SopTwoMusic = \relative {
1280   r8 | r4. r4 c'8 | a'8([ g)] f f([ e)] d | e8([ d)] c bes'
1281 }
1282 SopTwoLyrics = \lyricmode {
1283   Let | flee -- cy flocks the | hills a -- dorn,
1284 }
1285
1286 \score {
1287   \new ChoirStaff <<
1288     \new Staff <<
1289       \new Voice = "SopOne" {
1290         \global
1291         \SopOneMusic
1292       }
1293       \new Lyrics \lyricsto "SopOne" {
1294         \SopOneLyrics
1295       }
1296     >>
1297     \new Staff <<
1298       \new Voice = "SopTwo" {
1299         \global
1300         \SopTwoMusic
1301       }
1302       \new Lyrics \lyricsto "SopTwo" {
1303         \SopTwoLyrics
1304       }
1305     >>
1306   >>
1307 }
1308 @end lilypond
1309
1310 This is the basic structure of all vocal scores.  More staves may be
1311 added as required, more voices may be added to the staves, more verses
1312 may be added to the lyrics, and the variables containing the music can
1313 easily be placed in separate files should they become too long.
1314
1315 @cindex hymn structure
1316 @cindex SATB structure
1317 @cindex vocal scores with multiple verses
1318 @cindex multiple vocal verses
1319 @cindex verses, multiple vocal
1320
1321 Here is an example of the first line of a hymn with four
1322 verses, set for SATB.  In this case the words for all four
1323 parts are the same.  Note how we use variables to separate the
1324 music notation and words from the staff structure.  See too
1325 how a variable, which we have chosen to call @q{keyTime}, is used
1326 to hold several commands for use within the two staves.  In other
1327 examples this is often called @q{global}.
1328
1329 @lilypond[quote,verbatim]
1330 keyTime = { \key c \major \time 4/4 \partial 4 }
1331
1332 SopMusic   = \relative { c'4 | e4. e8 g4  g    | a4   a   g  }
1333 AltoMusic  = \relative { c'4 | c4. c8 e4  e    | f4   f   e  }
1334 TenorMusic = \relative  { e4 | g4. g8 c4.   b8 | a8 b c d e4 }
1335 BassMusic  = \relative  { c4 | c4. c8 c4  c    | f8 g a b c4 }
1336
1337 VerseOne =
1338   \lyricmode { E -- | ter -- nal fa -- ther, | strong to save, }
1339 VerseTwo   =
1340   \lyricmode { O | Christ, whose voice the | wa -- ters heard, }
1341 VerseThree =
1342   \lyricmode { O | Ho -- ly Spi -- rit, | who didst brood }
1343 VerseFour  =
1344   \lyricmode { O | Tri -- ni -- ty of | love and pow'r }
1345
1346 \score {
1347   \new ChoirStaff <<
1348     \new Staff <<
1349       \clef "treble"
1350       \new Voice = "Sop"  { \voiceOne \keyTime \SopMusic }
1351       \new Voice = "Alto" { \voiceTwo \AltoMusic }
1352       \new Lyrics \lyricsto "Sop" { \VerseOne   }
1353       \new Lyrics \lyricsto "Sop" { \VerseTwo   }
1354       \new Lyrics \lyricsto "Sop" { \VerseThree }
1355       \new Lyrics \lyricsto "Sop" { \VerseFour  }
1356     >>
1357     \new Staff <<
1358       \clef "bass"
1359       \new Voice = "Tenor" { \voiceOne \keyTime \TenorMusic }
1360       \new Voice = "Bass"  { \voiceTwo \BassMusic }
1361     >>
1362   >>
1363 }
1364 @end lilypond
1365
1366
1367 @seealso
1368 Notation Reference: @ruser{Vocal music}.
1369
1370
1371 @node Contexts and engravers
1372 @section Contexts and engravers
1373
1374 Contexts and engravers have been mentioned informally
1375 in earlier sections; we now must look at
1376 these concepts in more detail, as they are important
1377 in the fine-tuning of LilyPond output.
1378
1379
1380 @menu
1381 * Contexts explained::
1382 * Creating contexts::
1383 * Engravers explained::
1384 * Modifying context properties::
1385 * Adding and removing engravers::
1386 @end menu
1387
1388 @node Contexts explained
1389 @subsection Contexts explained
1390
1391 @cindex contexts explained
1392
1393 When music is printed, many notational elements which do not
1394 appear explicitly in the input file must be added to the
1395 output.  For example, compare the input and output of the
1396 following example:
1397
1398 @lilypond[quote,verbatim,relative=2]
1399 cis4 cis2. | a4 a2. |
1400 @end lilypond
1401
1402 The input is rather sparse, but in the output, bar lines,
1403 accidentals, clef, and time signature have been added.  When
1404 LilyPond @emph{interprets} the input the musical information
1405 is parsed from left to right, similar to the way a performer
1406 reads the score.  While reading the input, the program remembers
1407 where measure boundaries are, and which pitches require explicit
1408 accidentals.  This information must be held on several levels.
1409 For example, an accidental affects only a single staff, while
1410 a bar line must be synchronized across the entire score.
1411
1412 Within LilyPond, these rules and bits of information are grouped in
1413 @emph{Contexts}.  We have already introduced the @code{Voice} context.
1414 Others are the @code{Staff} and @code{Score} contexts.  Contexts are
1415 hierarchical to reflect the hierarchical nature of a musical score.
1416 For example: a @code{Staff} context can contain many @code{Voice}
1417 contexts, and a @code{Score} context can contain many @code{Staff}
1418 contexts.
1419
1420 @quotation
1421 @sourceimage{context-example,5cm,,}
1422 @end quotation
1423
1424 Each context has the responsibility for enforcing some notation rules,
1425 creating some notation objects and maintaining the associated
1426 properties.  For example, the @code{Voice} context may introduce an
1427 accidental and then the @code{Staff} context maintains the rule to
1428 show or suppress the accidental for the remainder of the measure.
1429
1430 As another example, the synchronization of bar lines is, by default,
1431 handled in the @code{Score} context.
1432 However, in some music we may not want the bar lines to be
1433 synchronized -- consider a polymetric score in 4/4 and 3/4 time.
1434 In such cases, we must modify the default settings of the
1435 @code{Score} and @code{Staff} contexts.
1436
1437 For very simple scores, contexts are created implicitly, and you need
1438 not be aware of them.  For larger pieces, such as anything with more
1439 than one staff, they must be
1440 created explicitly to make sure that you get as many staves as you
1441 need, and that they are in the correct order.  For typesetting pieces
1442 with specialized notation, it is usual to modify existing, or
1443 even to define totally new, contexts.
1444
1445 In addition to the @code{Score,} @code{Staff} and
1446 @code{Voice} contexts there are contexts which fit between
1447 the score and staff levels to control staff groups, such as the
1448 @code{PianoStaff} and @code{ChoirStaff} contexts.  There
1449 are also alternative staff and voice contexts, and contexts for
1450 lyrics, percussion, fret boards, figured bass, etc.
1451
1452 The names of all context types are formed from one or more
1453 words, each word being capitalized and joined immediately to the
1454 preceding word with no hyphen or underscore, e.g.,
1455 @code{GregorianTranscriptionStaff}.
1456
1457
1458 @seealso
1459 Notation Reference: @ruser{Contexts explained}.
1460
1461
1462 @node Creating contexts
1463 @subsection Creating contexts
1464
1465 @funindex \new
1466 @funindex new
1467 @cindex new contexts
1468 @cindex creating contexts
1469 @cindex contexts, creating
1470
1471 In an input file a score block, introduced with a @code{\score}
1472 command, contains a single music expression and an associated
1473 output definition (either a @code{\layout} or a @code{\midi} block).
1474 The @code{Score} context is usually left to be created automatically
1475 when the interpretation of that music expression starts.
1476
1477 For scores with only one voice and one staff, the @code{Voice} and
1478 @code{Staff} contexts may also be left to be created automatically,
1479 but for more complex scores it is necessary to create them by hand.
1480 The simplest command that does this is @code{\new}.  It is prepended
1481 to a music expression, for example
1482
1483 @example
1484 \new @var{type} @var{music-expression}
1485 @end example
1486
1487 @noindent
1488 where @var{type} is a context name (like @code{Staff} or
1489 @code{Voice}).  This command creates a new context, and starts
1490 interpreting the @var{music-expression} within that context.
1491
1492 @warning{@bs{}@code{new Score} should not be used as the essential
1493 top-level @code{Score} context is created automatically when the music
1494 expression within the @bs{}@code{score} block is interpreted.  Score-wide
1495 default values of context properties can be changed within the
1496 @bs{}@code{layout} block.  See @ref{Modifying context properties}}
1497
1498 You have seen many practical examples which created new
1499 @code{Staff} and @code{Voice} contexts in earlier sections, but
1500 to remind you how these commands are used in practice, here's an
1501 annotated real-music example:
1502
1503 @lilypond[quote,verbatim,ragged-right]
1504 \score {  % start of single compound music expression
1505   <<  % start of simultaneous staves section
1506     \time 2/4
1507     \new Staff {  % create RH staff
1508       \clef "treble"
1509       \key g \minor
1510       \new Voice {  % create voice for RH notes
1511         \relative {  % start of RH notes
1512           d''4 ees16 c8. |
1513           d4 ees16 c8. |
1514         }  % end of RH notes
1515       }  % end of RH voice
1516     }  % end of RH staff
1517     \new Staff <<  % create LH staff; needs two simultaneous voices
1518       \clef "bass"
1519       \key g \minor
1520       \new Voice {  % create LH voice one
1521         \voiceOne
1522         \relative {  % start of LH voice one notes
1523           g8 <bes d> ees, <g c> |
1524           g8 <bes d> ees, <g c> |
1525         }  % end of LH voice one notes
1526       }  % end of LH voice one
1527       \new Voice {  % create LH voice two
1528         \voiceTwo
1529         \relative {  % start of LH voice two notes
1530           g4 ees |
1531           g4 ees |
1532         }  % end of LH voice two notes
1533       }  % end of LH voice two
1534     >>  % end of LH staff
1535   >>  % end of simultaneous staves section
1536 }  % end of single compound music expression
1537 @end lilypond
1538
1539 (Note how all the statements which open a block with either a
1540 curly bracket, @code{@{}, or double angle brackets, @code{<<},
1541 are indented by two further spaces, and the corresponding
1542 closing bracket is indented by exactly the same amount.  While
1543 this is not required, following this practice will greatly
1544 reduce the number of @q{unmatched bracket} errors, and is
1545 strongly recommended.  It enables the structure of the music to
1546 be seen at a glance, and any unmatched brackets will be obvious.
1547 Note too how the LH staff is created using double angle brackets
1548 because it requires two voices for its music, whereas the RH staff
1549 is created with a single music expression surrounded by curly
1550 brackets because it requires only one voice.)
1551
1552 @cindex contexts, naming
1553 @cindex naming contexts
1554
1555 The @code{\new} command may also give an identifying name to the
1556 context to distinguish it from other contexts of the same type,
1557
1558 @example
1559 \new @var{type} = @var{id} @var{music-expression}
1560 @end example
1561
1562 Note the distinction between the name of the context type,
1563 @code{Staff}, @code{Voice}, etc, and the identifying name of a
1564 particular instance of that type, which can be any sequence of letters
1565 invented by the user.  Digits and spaces can also be used in the
1566 identifying name, but then it has to be placed in quotes,
1567 i.e. @code{\new Staff = "MyStaff 1" @var{music-expression}}.
1568 The identifying name is used to
1569 refer back to that particular instance of a context.  We saw this in
1570 use in the section on lyrics, see @ref{Voices and vocals}.
1571
1572
1573 @seealso
1574 Notation Reference: @ruser{Creating contexts}.
1575
1576
1577 @node Engravers explained
1578 @subsection Engravers explained
1579
1580 @cindex engravers
1581
1582 Every mark on the printed output of a score produced by LilyPond
1583 is produced by an @code{Engraver}.  Thus there is an engraver
1584 to print staves, one to print note heads, one for stems, one for
1585 beams, etc, etc.  In total there are over 120 such engravers!
1586 Fortunately, for most scores it is not necessary to know about
1587 more than a few, and for simple scores you do not need to know
1588 about any.
1589
1590 Engravers live and operate in Contexts.  Engravers such as the
1591 @code{Metronome_mark_engraver}, whose action and output apply to the
1592 score as a whole, operate in the highest level context -- the
1593 @code{Score} context.
1594
1595 The @code{Clef_engraver} and @code{Key_engraver} are to be
1596 found in every @code{Staff} Context, as different staves may require
1597 different clefs and keys.
1598
1599 The @code{Note_heads_engraver} and @code{Stem_engraver} live
1600 in every @code{Voice} context, the lowest level context of all.
1601
1602 Each engraver processes the particular objects associated
1603 with its function, and maintains the properties that relate
1604 to that function.  These properties, like the properties
1605 associated with contexts, may be modified to change the
1606 operation of the engraver or the appearance of those elements
1607 in the printed score.
1608
1609 Engravers all have compound names formed from words which
1610 describe their function.  Just the first word is capitalized,
1611 and the remainder are joined to it with underscores.  Thus
1612 the @code{Staff_symbol_engraver} is responsible for creating the
1613 lines of the staff, the @code{Clef_engraver} determines and sets
1614 the pitch reference point on the staff by drawing a clef symbol.
1615
1616 Here are some of the most common engravers together with their
1617 function.  You will see it is usually easy to guess the function
1618 from the name, or vice versa.
1619
1620 @multitable @columnfractions .3 .7
1621 @headitem Engraver
1622   @tab Function
1623 @item Accidental_engraver
1624   @tab Makes accidentals, cautionary and suggested accidentals
1625 @item Beam_engraver
1626   @tab Engraves beams
1627 @item Clef_engraver
1628   @tab Engraves clefs
1629 @item Completion_heads_engraver
1630   @tab Splits notes which cross bar lines
1631 @item Dynamic_engraver
1632   @tab Creates hairpins and dynamic texts
1633 @item Forbid_line_break_engraver
1634   @tab Prevents line breaks if a musical element is still active
1635 @item Key_engraver
1636   @tab Creates the key signature
1637 @item Metronome_mark_engraver
1638   @tab Engraves metronome marking
1639 @item Note_heads_engraver
1640   @tab Engraves note heads
1641 @item Rest_engraver
1642   @tab Engraves rests
1643 @item Staff_symbol_engraver
1644   @tab Engraves the five (by default) lines of the staff
1645 @item Stem_engraver
1646   @tab Creates stems and single-stem tremolos
1647 @item Time_signature_engraver
1648   @tab Creates time signatures
1649 @end multitable
1650
1651 @smallspace
1652
1653 We shall see later how the output of LilyPond can be changed
1654 by modifying the action of Engravers.
1655
1656
1657 @seealso
1658 Internals reference: @rinternals{Engravers and Performers}.
1659
1660
1661 @node Modifying context properties
1662 @subsection Modifying context properties
1663
1664 @cindex context properties
1665 @cindex context properties, modifying
1666 @cindex modifying context properties
1667 @funindex \set
1668 @funindex set
1669 @funindex \unset
1670 @funindex unset
1671
1672 Contexts are responsible for holding the values of a number of
1673 context @emph{properties}.  Many of them can be changed to
1674 influence the interpretation of the input and so change the
1675 appearance of the output.  They are changed by the
1676 @code{\set} command.  This takes the form
1677
1678 @example
1679 \set @emph{ContextName}.@emph{propertyName} = #@emph{value}
1680 @end example
1681
1682 Where the @emph{ContextName} is usually @code{Score},
1683 @code{Staff} or @code{Voice}.  It may be omitted,
1684 in which case the current context (typically @code{Voice}) is assumed.
1685
1686 The names of context properties consist of words joined
1687 together with no hyphens or underscores, all except the
1688 first having a capital letter.  Here are a few examples
1689 of some commonly used ones.  There are many more.
1690
1691 @c attempt to force this onto a new page
1692 @need 50
1693 @multitable @columnfractions .25 .15 .45 .15
1694 @headitem propertyName
1695   @tab Type
1696   @tab Function
1697   @tab Example Value
1698 @item extraNatural
1699   @tab Boolean
1700   @tab If true, set extra natural signs before accidentals
1701   @tab @code{#t}, @code{#f}
1702 @item currentBarNumber
1703   @tab Integer
1704   @tab Set the current bar number
1705   @tab @code{50}
1706 @item doubleSlurs
1707   @tab Boolean
1708   @tab If true, print slurs both above and below notes
1709   @tab @code{#t}, @code{#f}
1710 @item instrumentName
1711   @tab Text
1712   @tab Set the name to be placed at the start of the staff
1713   @tab @code{"Cello I"}
1714 @item fontSize
1715   @tab Real
1716   @tab Increase or decrease the font size
1717   @tab @code{2.4}
1718 @item stanza
1719   @tab Text
1720   @tab Set the text to print before the start of a verse
1721   @tab @code{"2"}
1722 @end multitable
1723
1724 @noindent
1725 where a Boolean is either True (@code{#t}) or False (@code{#f}),
1726 an Integer is a positive whole number, a Real is a positive
1727 or negative decimal number, and text is enclosed in double
1728 apostrophes.  Note the occurrence of hash signs,
1729 (@code{#}), in two different places -- as part of the Boolean
1730 value before the @code{t} or @code{f}, and before @emph{value}
1731 in the @code{\set} statement.  So when a Boolean is being
1732 entered you need to code two hash signs, e.g., @code{##t}.
1733
1734 @cindex properties operating in contexts
1735 @cindex setting properties within contexts
1736
1737 Before we can set any of these properties we need to know
1738 in which context they operate.  Sometimes this is obvious,
1739 but occasionally it can be tricky.  If the wrong context
1740 is specified, no error message is produced, but the expected
1741 action will not take place.  For example, the
1742 @code{instrumentName} clearly lives in the @code{Staff} context, since
1743 it is the staff that is to be named.
1744 In this example the first staff is labeled, but not the second,
1745 because we omitted the context name.
1746
1747 @lilypond[quote,verbatim,ragged-right]
1748 <<
1749   \new Staff \relative c'' {
1750     \set Staff.instrumentName = #"Soprano"
1751     c2 c
1752   }
1753   \new Staff \relative c' {
1754     \set instrumentName = #"Alto"  % Wrong!
1755     d2 d
1756   }
1757 >>
1758 @end lilypond
1759
1760 Remember the default context name is @code{Voice}, so the second
1761 @code{\set} command set the property @code{instrumentName} in the
1762 @code{Voice} context to @qq{Alto}, but as LilyPond does not look
1763 for any such property in the @code{Voice} context, no
1764 further action took place.  This is not an error, and no error
1765 message is logged in the log file.
1766
1767 Similarly, if the property name is mis-spelt no error message is
1768 produced, and clearly the expected action cannot be performed.  In
1769 fact, you can set any (fictitious) @q{property} using any name you
1770 like in any context that exists by using the @code{\set} command.  But
1771 if the name is not known to LilyPond it will not cause any action to
1772 be taken.  Some text editors with special support for LilyPond input
1773 files document property names with bullets when you hover them with
1774 the mouse, like JEdit with LilyPondTool, or highlight unknown property
1775 names differently, like ConTEXT.  If you do not use an editor with
1776 such features, it is recommended to check the property name in the
1777 Internals Reference: see @rinternals{Tunable context properties}, or
1778 @rinternals{Contexts}.
1779
1780 The @code{instrumentName} property will take effect only
1781 if it is set in the @code{Staff} context, but
1782 some properties can be set in more than one context.
1783 For example, the property @code{extraNatural} is by
1784 default set to ##t (true) for all staves.
1785 If it is set to ##f (false) in one particular @code{Staff}
1786 context it applies just to the accidentals on that staff.
1787 If it is set to false in the @code{Score} context
1788 it applies to all staves.
1789
1790 So this turns off extra naturals in one staff:
1791
1792 @lilypond[quote,verbatim,ragged-right]
1793 <<
1794   \new Staff \relative {
1795     aeses'2 aes
1796   }
1797   \new Staff \relative c'' {
1798     \set Staff.extraNatural = ##f
1799     aeses2 aes
1800   }
1801 >>
1802 @end lilypond
1803
1804 @noindent
1805 and this turns them off in all staves:
1806
1807 @lilypond[quote,verbatim,ragged-right]
1808 <<
1809   \new Staff \relative {
1810     aeses'2 aes
1811   }
1812   \new Staff \relative c'' {
1813     \set Score.extraNatural = ##f
1814     aeses2 aes
1815   }
1816 >>
1817 @end lilypond
1818
1819 As another example, if @code{clefTransposition} is set in
1820 the @code{Score} context this immediately changes the value
1821 of the transposition in all current staves and sets a new default
1822 value which will be applied to all staves.
1823
1824 The opposite command, @code{\unset}, effectively removes the
1825 property from the context, which causes most properties to
1826 revert to their default value.  Usually @code{\unset} is not
1827 required as a new @code{\set} command will achieve what is
1828 wanted.
1829
1830 The @code{\set} and @code{\unset} commands can appear anywhere
1831 in the input file and will take effect from the time they are
1832 encountered until the end of the score or until the property is
1833 @code{\set} or @code{\unset} again.  Let's try changing the
1834 font size, which affects the size of the note heads (among
1835 other things) several times.  The change is from the default
1836 value, not the most recently set value.
1837
1838 @lilypond[quote,verbatim,ragged-right,relative=1]
1839 c4 d
1840 % make note heads smaller
1841 \set fontSize = #-4
1842 e4 f |
1843 % make note heads larger
1844 \set fontSize = #2.5
1845 g4 a
1846 % return to default size
1847 \unset fontSize
1848 b4 c |
1849 @end lilypond
1850
1851 We have now seen how to set the values of several different types of
1852 property.  Note that integers and numbers are always preceded by a
1853 hash sign, @code{#}, while a true or false value is specified by
1854 @code{##t} and @code{##f}, with two hash signs.  A text property
1855 should be enclosed in double quotation signs, as above, although we
1856 shall see later that text can actually be specified in a much more
1857 general way by using the very powerful @code{\markup} command.
1858
1859 @subsubheading Setting context properties with @code{\with}
1860
1861 @funindex \with
1862 @funindex with
1863 @cindex context properties, setting with \with
1864
1865 The default value of context properties may be set at the time the
1866 context is created.  Sometimes this is a clearer way of setting a
1867 property value if it is to remain fixed for the duration of
1868 the context.  When a context is created with a @code{\new}
1869 command it may be followed immediately by a @code{\with @{ .. @}}
1870 block in which the default property values are set.  For example,
1871 if we wish to suppress the printing of extra naturals for the
1872 duration of a staff we would write:
1873
1874 @example
1875 \new Staff \with @{ extraNatural = ##f @}
1876 @end example
1877
1878 @noindent
1879 like this:
1880
1881 @lilypond[quote,verbatim,ragged-right]
1882 <<
1883   \new Staff {
1884     \relative {
1885       gisis'4 gis aeses aes
1886     }
1887   }
1888   \new Staff \with { extraNatural = ##f } {
1889     \relative {
1890       gisis'4 gis aeses aes
1891     }
1892   }
1893 >>
1894 @end lilypond
1895
1896 Properties set in this way may still be changed dynamically using
1897 @code{\set} and returned to the default value set in the
1898 @code{\with} block with @code{\unset}.
1899
1900 @cindex fontSize, default and setting
1901
1902 So if the @code{fontSize} property is set in a @code{\with} clause
1903 it sets the default value of the font size.  If it is later changed
1904 with @code{\set}, this new default value may be restored with the
1905 @code{\unset fontSize} command.
1906
1907 @subsubheading Setting context properties with @code{\context}
1908
1909 @cindex context properties, setting with \context
1910 @funindex \context
1911 @funindex context
1912
1913 The values of context properties may be set in @emph{all} contexts
1914 of a particular type, such as all @code{Staff} contexts, with a single
1915 command.  The context type is identified by using its
1916 type name, like @code{Staff}, prefixed by a back-slash: @code{\Staff}.
1917 The statement which sets the property value is the same as that in a
1918 @code{\with} block, introduced above.  It is placed in a
1919 @code{\context} block within a @code{\layout} block.  Each
1920 @code{\context} block will affect all contexts of the type specified
1921 throughout the @code{\score} or @code{\book} block in which the
1922 @code{\layout} block appears.  Here is an example to show the format:
1923
1924 @lilypond[verbatim,quote]
1925 \score {
1926   \new Staff {
1927     \relative {
1928       cisis''4 e d cis
1929     }
1930   }
1931   \layout {
1932     \context {
1933       \Staff
1934       extraNatural = ##t
1935     }
1936   }
1937 }
1938 @end lilypond
1939
1940 If the property override is to be applied to all staves
1941 within the score:
1942
1943 @lilypond[quote,verbatim]
1944 \score {
1945   <<
1946     \new Staff {
1947       \relative {
1948         gisis'4 gis aeses aes
1949       }
1950     }
1951     \new Staff {
1952       \relative {
1953         gisis'4 gis aeses aes
1954       }
1955     }
1956   >>
1957   \layout {
1958     \context {
1959       \Score extraNatural = ##f
1960     }
1961   }
1962 }
1963 @end lilypond
1964
1965 @noindent
1966 Context properties set in this way may be overridden for particular
1967 instances of contexts by statements in a @code{\with} block, and by
1968 @code{\set} commands embedded in music statements.
1969
1970
1971 @seealso
1972 Notation Reference:
1973 @ruser{Changing context default settings}.
1974 @ruser{The set command}.
1975
1976 Internals Reference:
1977 @rinternals{Contexts},
1978 @rinternals{Tunable context properties}.
1979
1980
1981 @node Adding and removing engravers
1982 @subsection Adding and removing engravers
1983
1984 @cindex engravers, adding
1985 @cindex adding engravers
1986 @cindex engravers, removing
1987 @cindex removing engravers
1988
1989 @funindex \consists
1990 @funindex consists
1991 @funindex \remove
1992 @funindex remove
1993
1994 We have seen that contexts each contain several engravers, each
1995 of which is responsible for producing a particular part of the
1996 output, like bar lines, staves, note heads, stems, etc.  If an
1997 engraver is removed from a context, it can no longer produce its
1998 output.  This is a crude way of modifying the output, but it
1999 can sometimes be useful.
2000
2001 @subsubheading Changing a single context
2002
2003 To remove an engraver from a single context we use the
2004 @code{\with} command placed immediately after the context creation
2005 command, as in the previous section.
2006
2007 As an illustration, let's repeat an example from the previous section
2008 with the staff lines removed.  Remember that the staff lines are
2009 produced by the @code{Staff_symbol_engraver}.
2010
2011 @lilypond[quote,verbatim,ragged-right]
2012 \new Staff \with {
2013   \remove "Staff_symbol_engraver"
2014 }
2015 \relative {
2016   c'4 d
2017   \set fontSize = #-4  % make note heads smaller
2018   e4 f |
2019   \set fontSize = #2.5  % make note heads larger
2020   g4 a
2021   \unset fontSize  % return to default size
2022   b4 c |
2023 }
2024 @end lilypond
2025
2026 @cindex ambitus engraver
2027
2028 Engravers can also be added to individual contexts.
2029 The command to do this is
2030
2031 @code{\consists @var{Engraver_name}},
2032
2033 @noindent
2034 placed inside a @code{\with} block.  Some vocal scores have an ambitus
2035 placed at the beginning of a staff to indicate the range of notes in
2036 that staff -- see @rglos{ambitus}.  The ambitus is produced by the
2037 @code{Ambitus_engraver}, which is not normally included in any
2038 context.  If we add it to the @code{Voice} context, it calculates the
2039 range from that voice only:
2040
2041 @lilypond[quote,verbatim,ragged-right]
2042 \new Staff <<
2043   \new Voice \with {
2044     \consists "Ambitus_engraver"
2045   } {
2046     \relative c'' {
2047       \voiceOne
2048       c4 a b g
2049     }
2050   }
2051   \new Voice {
2052     \relative c' {
2053       \voiceTwo
2054       c4 e d f
2055     }
2056   }
2057 >>
2058 @end lilypond
2059
2060 @noindent
2061 but if we add the ambitus engraver to the
2062 @code{Staff} context, it calculates the range from all
2063 the notes in all the voices on that staff:
2064
2065 @lilypond[quote,verbatim,ragged-right]
2066 \new Staff \with {
2067   \consists "Ambitus_engraver"
2068 }
2069 <<
2070   \new Voice {
2071     \relative c'' {
2072       \voiceOne
2073       c4 a b g
2074     }
2075   }
2076   \new Voice {
2077     \relative c' {
2078       \voiceTwo
2079       c4 e d f
2080     }
2081   }
2082 >>
2083 @end lilypond
2084
2085 @subsubheading Changing all contexts of the same type
2086
2087 @funindex \layout
2088 @funindex layout
2089
2090 The examples above show how to remove or add engravers to
2091 individual contexts.  It is also possible to remove or add
2092 engravers to every context of a specific type by placing the
2093 commands in the appropriate context in a @code{\layout}
2094 block.  For example, if we wanted to show an ambitus for every
2095 staff in a four-staff score, we could write
2096
2097 @lilypond[quote,verbatim,ragged-right]
2098 \score {
2099   <<
2100     \new Staff {
2101       \relative {
2102         c''4 a b g
2103       }
2104     }
2105     \new Staff {
2106       \relative {
2107         c'4 a b g
2108       }
2109     }
2110     \new Staff {
2111       \clef "G_8"
2112       \relative {
2113         c'4 a b g
2114       }
2115     }
2116     \new Staff {
2117       \clef "bass"
2118       \relative {
2119         c4 a b g
2120       }
2121     }
2122   >>
2123   \layout {
2124     \context {
2125       \Staff
2126       \consists "Ambitus_engraver"
2127     }
2128   }
2129 }
2130 @end lilypond
2131
2132 @noindent
2133 The values of context properties may also be set
2134 for all contexts of a particular type by including the
2135 @code{\set} command in a @code{\context} block in the
2136 same way.
2137
2138 @seealso
2139 Notation Reference: @ruser{Modifying context plug-ins},
2140 @ruser{Changing context default settings}.
2141
2142 @knownissues
2143 The @code{Stem_engraver} and @code{Beam_engraver} attach their
2144 objects to note heads.  If the @code{Note_heads_engraver} is removed
2145 no note heads are produced and therefore no stems or beams are created
2146 either.
2147
2148
2149 @node Extending the templates
2150 @section Extending the templates
2151
2152 You've read the tutorial, you know how to write music, you
2153 understand the fundamental concepts.  But how can you
2154 get the staves that you want?  Well, you can find lots of
2155 templates (see @ref{Templates}) which may give you a start.
2156 But what if you want something that isn't covered there?  Read on.
2157
2158 @menu
2159 * Soprano and cello::
2160 * Four-part SATB vocal score::
2161 * Building a score from scratch::
2162 * Saving typing with variables and functions::
2163 * Scores and parts::
2164 @end menu
2165
2166 @node Soprano and cello
2167 @subsection Soprano and cello
2168
2169 @cindex template, modifying
2170 @cindex modifying templates
2171
2172 Start off with the template that seems closest to what you want to
2173 end up with.  Let's say that you want to write something for
2174 soprano and cello.  In this case, we would start with the
2175 @q{Notes and lyrics} template (for the soprano part).
2176
2177 @example
2178 \version @w{"@version{}"}
2179
2180 melody = \relative @{
2181   \clef "treble"
2182   \key c \major
2183   \time 4/4
2184   a4 b c d
2185 @}
2186
2187 text = \lyricmode @{
2188   Aaa Bee Cee Dee
2189 @}
2190
2191 \score @{
2192   <<
2193     \new Voice = "one" @{
2194       \autoBeamOff
2195       \melody
2196     @}
2197     \new Lyrics \lyricsto "one" \text
2198   >>
2199   \layout @{ @}
2200   \midi @{ @}
2201 @}
2202 @end example
2203
2204 Now we want to add a cello part.  Let's look at the @q{Notes only} example:
2205
2206 @example
2207 \version @w{"@version{}"}
2208
2209 melody = \relative @{
2210   \clef "treble"
2211   \key c \major
2212   \time 4/4
2213   a4 b c d
2214 @}
2215
2216 \score @{
2217   \new Staff \melody
2218   \layout @{ @}
2219   \midi @{ @}
2220 @}
2221 @end example
2222
2223 We don't need two @code{\version} commands.  We'll need the
2224 @code{melody} section.  We don't want two @code{\score} sections
2225 -- if we had two @code{\score}s, we'd get the two parts separately.
2226 We want them together, as a duet.  Within the @code{\score}
2227 section, we don't need two @code{\layout} or @code{\midi}.
2228
2229 If we simply cut and paste the @code{melody} section, we would
2230 end up with two @code{melody} definitions.  This would not generate
2231 an error, but the second one would be used for both melodies.
2232 So let's rename them to make them distinct.  We'll call the
2233 section for the soprano @code{sopranoMusic} and the section for
2234 the cello @code{celloMusic}.  While we're doing this, let's rename
2235 @code{text} to be @code{sopranoLyrics}.  Remember to rename both
2236 instances of all these names -- both the initial definition (the
2237 @code{melody = \relative c' @{ } part) and the name's use (in the
2238 @code{\score} section).
2239
2240 While we're doing this, let's change the cello part's staff --
2241 celli normally use bass clef.  We'll also give the cello some
2242 different notes.
2243
2244 @example
2245 \version @w{"@version{}"}
2246
2247 sopranoMusic = \relative @{
2248   \clef "treble"
2249   \key c \major
2250   \time 4/4
2251   a4 b c d
2252 @}
2253
2254 sopranoLyrics = \lyricmode @{
2255   Aaa Bee Cee Dee
2256 @}
2257
2258 celloMusic = \relative @{
2259   \clef "bass"
2260   \key c \major
2261   \time 4/4
2262   d4 g fis8 e d4
2263 @}
2264
2265 \score @{
2266   <<
2267     \new Voice = "one" @{
2268       \autoBeamOff
2269       \sopranoMusic
2270     @}
2271     \new Lyrics \lyricsto "one" \sopranoLyrics
2272   >>
2273   \layout @{ @}
2274   \midi @{ @}
2275 @}
2276 @end example
2277
2278 This is looking promising, but the cello part won't appear in the
2279 score -- we haven't used it in the @code{\score} section.  If we
2280 want the cello part to appear under the soprano part, we need to add
2281
2282 @example
2283 \new Staff \celloMusic
2284 @end example
2285
2286 @noindent
2287 underneath the soprano stuff.  We also need to add @code{<<} and
2288 @code{>>} around the music -- that tells LilyPond that there's
2289 more than one thing (in this case, two @code{Staves}) happening
2290 at once.  The @code{\score} looks like this now:
2291
2292 @c Indentation in this example is deliberately poor
2293 @example
2294 \score @{
2295   <<
2296   <<
2297     \new Voice = "one" @{
2298       \autoBeamOff
2299       \sopranoMusic
2300     @}
2301     \new Lyrics \lyricsto "one" \sopranoLyrics
2302   >>
2303   \new Staff \celloMusic
2304   >>
2305   \layout @{ @}
2306   \midi @{ @}
2307 @}
2308 @end example
2309
2310 @noindent
2311 This looks a bit messy; the indentation is messed up now.  That is
2312 easily fixed.  Here's the complete soprano and cello template.
2313
2314 @lilypond[quote,verbatim,ragged-right,addversion]
2315 sopranoMusic = \relative {
2316   \clef "treble"
2317   \key c \major
2318   \time 4/4
2319   a4 b c d
2320 }
2321
2322 sopranoLyrics = \lyricmode {
2323   Aaa Bee Cee Dee
2324 }
2325
2326 celloMusic = \relative {
2327   \clef "bass"
2328   \key c \major
2329   \time 4/4
2330   d4 g fis8 e d4
2331 }
2332
2333 \score {
2334   <<
2335     <<
2336       \new Voice = "one" {
2337         \autoBeamOff
2338         \sopranoMusic
2339       }
2340       \new Lyrics \lyricsto "one" \sopranoLyrics
2341     >>
2342     \new Staff \celloMusic
2343   >>
2344   \layout { }
2345   \midi { }
2346 }
2347 @end lilypond
2348
2349
2350 @seealso
2351 The starting templates can be found in the @q{Templates} appendix,
2352 see @ref{Single staff templates}.
2353
2354
2355 @node Four-part SATB vocal score
2356 @subsection Four-part SATB vocal score
2357
2358 @cindex template, SATB
2359 @cindex SATB template
2360
2361 Most vocal scores of music written for four-part mixed choir
2362 with orchestral accompaniment such as Mendelssohn's Elijah or
2363 Handel's Messiah have the choral music and words on four
2364 staves, one for each of SATB, with a piano reduction of the
2365 orchestral accompaniment underneath.  Here's an example
2366 from Handel's Messiah:
2367
2368 @c The following should appear as music without code
2369 @lilypond[quote,ragged-right]
2370 global = { \key d \major \time 4/4 }
2371
2372 sopranoMusic = \relative {
2373   \clef "treble"
2374   r4 d''2 a4 | d4. d8 a2 | cis4 d cis2 |
2375 }
2376 sopranoWords = \lyricmode {
2377   Wor -- thy | is the lamb | that was slain |
2378 }
2379
2380 altoMusic = \relative {
2381   \clef "treble"
2382   r4 a'2 a4 | fis4. fis8 a2 | g4 fis e2 |
2383 }
2384 altoWords = \sopranoWords
2385
2386 tenorMusic = \relative {
2387   \clef "G_8"
2388   r4 fis'2 e4 | d4. d8 d2 | e4 a, cis2 |
2389 }
2390 tenorWords = \sopranoWords
2391
2392 bassMusic = \relative {
2393   \clef "bass"
2394   r4 d'2 cis4 | b4. b8 fis2 | e4 d a'2 |
2395 }
2396 bassWords = \sopranoWords
2397
2398 upper = \relative a' {
2399   \clef "treble"
2400   \global
2401   r4 <a d fis>2 <a e' a>4 |
2402   <d fis d'>4. <d fis d'>8 <a d a'>2 |
2403   <g cis g'>4 <a d fis> <a cis e>2 |
2404 }
2405
2406 lower = \relative c, {
2407   \clef "bass"
2408   \global
2409   <d d'>4 <d d'>2 <cis cis'>4 |
2410   <b b'>4. <b' b'>8 <fis fis'>2 |
2411   <e e'>4 <d d'> <a' a'>2 |
2412 }
2413
2414 \score {
2415   <<  % combine ChoirStaff and PianoStaff in parallel
2416     \new ChoirStaff <<
2417       \new Staff = "sopranos" <<
2418         \set Staff.instrumentName = #"Soprano"
2419         \new Voice = "sopranos" {
2420           \global
2421           \sopranoMusic
2422         }
2423       >>
2424       \new Lyrics \lyricsto "sopranos" {
2425         \sopranoWords
2426       }
2427       \new Staff = "altos" <<
2428         \set Staff.instrumentName = #"Alto"
2429         \new Voice = "altos" {
2430           \global
2431           \altoMusic
2432         }
2433       >>
2434       \new Lyrics \lyricsto "altos" { \altoWords }
2435       \new Staff = "tenors" <<
2436         \set Staff.instrumentName = #"Tenor"
2437         \new Voice = "tenors" {
2438           \global
2439           \tenorMusic
2440         }
2441       >>
2442       \new Lyrics \lyricsto "tenors" { \tenorWords }
2443       \new Staff = "basses" <<
2444         \set Staff.instrumentName = #"Bass"
2445         \new Voice = "basses" {
2446           \global
2447           \bassMusic
2448         }
2449       >>
2450       \new Lyrics \lyricsto "basses" {
2451         \bassWords
2452       }
2453     >>  % end ChoirStaff
2454     \new PianoStaff <<
2455       \set PianoStaff.instrumentName = #"Piano"
2456       \new Staff = "upper" \upper
2457       \new Staff = "lower" \lower
2458     >>
2459   >>
2460 }
2461 @end lilypond
2462
2463 None of the templates provides this layout exactly.  The nearest is
2464 @ref{SATB vocal score and automatic piano reduction} -- but we need
2465 to change the layout and add a piano
2466 accompaniment which is not derived automatically from the vocal parts.
2467 The variables holding the music and words for the vocal parts are
2468 fine, but we shall need to add variables for the piano reduction.
2469
2470 The order in which the contexts appear in the ChoirStaff of the
2471 template do not correspond with the order in the vocal score shown
2472 above.  We need to rearrange them so there are four staves with the
2473 words written directly underneath the notes for each part.  All the
2474 voices should be @code{\voiceOne}, which is the default, so the
2475 @code{\voiceXXX} commands should be removed.  We also need to specify
2476 the tenor clef for the tenors.  The way in which lyrics are specified
2477 in the template has not yet been encountered so we need to use the
2478 method with which we are familiar.  We should also add the names of
2479 each staff.
2480
2481 Doing this gives for our ChoirStaff:
2482
2483 @example
2484 \new ChoirStaff <<
2485   \new Staff = "sopranos" <<
2486     \set Staff.instrumentName = #"Soprano"
2487     \new Voice = "sopranos" @{
2488       \global
2489       \sopranoMusic
2490     @}
2491   >>
2492   \new Lyrics \lyricsto "sopranos" @{
2493     \sopranoWords
2494   @}
2495   \new Staff = "altos" <<
2496     \set Staff.instrumentName = #"Alto"
2497     \new Voice = "altos" @{
2498       \global
2499       \altoMusic
2500     @}
2501   >>
2502   \new Lyrics \lyricsto "altos" @{
2503     \altoWords
2504   @}
2505   \new Staff = "tenors" <<
2506     \set Staff.instrumentName = #"Tenor"
2507     \new Voice = "tenors" @{
2508       \global
2509       \tenorMusic
2510     @}
2511   >>
2512   \new Lyrics \lyricsto "tenors" @{
2513     \tenorWords
2514   @}
2515   \new Staff = "basses" <<
2516     \set Staff.instrumentName = #"Bass"
2517     \new Voice = "basses" @{
2518       \global
2519       \bassMusic
2520     @}
2521   >>
2522   \new Lyrics \lyricsto "basses" @{
2523     \bassWords
2524   @}
2525 >>  % end ChoirStaff
2526 @end example
2527
2528 Next we must work out the piano part.  This is
2529 easy - we just pull out the piano part from the
2530 @q{Solo piano} template:
2531
2532 @example
2533 \new PianoStaff <<
2534   \set PianoStaff.instrumentName = #"Piano  "
2535   \new Staff = "upper" \upper
2536   \new Staff = "lower" \lower
2537 >>
2538 @end example
2539
2540 and add the variable definitions for @code{upper}
2541 and @code{lower}.
2542
2543 The ChoirStaff and PianoStaff must be combined
2544 using angle brackets as we want them to be
2545 stacked one above the other:
2546
2547 @example
2548 <<  % combine ChoirStaff and PianoStaff one above the other
2549   \new ChoirStaff <<
2550     \new Staff = "sopranos" <<
2551       \new Voice = "sopranos" @{
2552         \global
2553         \sopranoMusic
2554       @}
2555     >>
2556     \new Lyrics \lyricsto "sopranos" @{
2557       \sopranoWords
2558      @}
2559     \new Staff = "altos" <<
2560       \new Voice = "altos" @{
2561         \global
2562         \altoMusic
2563       @}
2564     >>
2565     \new Lyrics \lyricsto "altos" @{
2566       \altoWords
2567     @}
2568     \new Staff = "tenors" <<
2569       \clef "G_8"  % tenor clef
2570       \new Voice = "tenors" @{
2571         \global
2572         \tenorMusic
2573       @}
2574     >>
2575     \new Lyrics \lyricsto "tenors" @{
2576       \tenorWords
2577     @}
2578     \new Staff = "basses" <<
2579       \clef "bass"
2580       \new Voice = "basses" @{
2581         \global
2582         \bassMusic
2583       @}
2584     >>
2585     \new Lyrics \lyricsto "basses" @{
2586       \bassWords
2587     @}
2588   >>  % end ChoirStaff
2589
2590   \new PianoStaff <<
2591     \set PianoStaff.instrumentName = #"Piano"
2592     \new Staff = "upper" \upper
2593     \new Staff = "lower" \lower
2594   >>
2595 >>
2596 @end example
2597
2598 Combining all these together and adding the music
2599 for the three bars of the example above gives:
2600
2601 @lilypond[quote,verbatim,ragged-right,addversion]
2602 global = { \key d \major \time 4/4 }
2603 sopranoMusic = \relative {
2604   \clef "treble"
2605   r4 d''2 a4 | d4. d8 a2 | cis4 d cis2 |
2606 }
2607 sopranoWords = \lyricmode {
2608   Wor -- thy | is the lamb | that was slain |
2609 }
2610 altoMusic = \relative {
2611   \clef "treble"
2612   r4 a'2 a4 | fis4. fis8 a2 | g4 fis fis2 |
2613 }
2614 altoWords = \sopranoWords
2615 tenorMusic = \relative {
2616   \clef "G_8"
2617   r4 fis'2 e4 | d4. d8 d2 | e4 a, cis2 |
2618 }
2619 tenorWords = \sopranoWords
2620 bassMusic = \relative {
2621   \clef "bass"
2622   r4 d'2 cis4 | b4. b8 fis2 | e4 d a'2 |
2623 }
2624 bassWords = \sopranoWords
2625 upper = \relative a' {
2626   \clef "treble"
2627   \global
2628   r4 <a d fis>2 <a e' a>4 |
2629   <d fis d'>4. <d fis d'>8 <a d a'>2 |
2630   <g cis g'>4 <a d fis> <a cis e>2 |
2631 }
2632 lower = \relative c, {
2633   \clef "bass"
2634   \global
2635   <d d'>4 <d d'>2 <cis cis'>4 |
2636   <b b'>4. <b' b'>8 <fis fis'>2 |
2637   <e e'>4 <d d'> <a' a'>2 |
2638 }
2639
2640 \score {
2641   <<  % combine ChoirStaff and PianoStaff in parallel
2642     \new ChoirStaff <<
2643       \new Staff = "sopranos" <<
2644         \set Staff.instrumentName = #"Soprano"
2645         \new Voice = "sopranos" {
2646           \global
2647           \sopranoMusic
2648         }
2649       >>
2650       \new Lyrics \lyricsto "sopranos" {
2651         \sopranoWords
2652       }
2653       \new Staff = "altos" <<
2654         \set Staff.instrumentName = #"Alto"
2655         \new Voice = "altos" {
2656           \global
2657           \altoMusic
2658         }
2659       >>
2660       \new Lyrics \lyricsto "altos" {
2661         \altoWords
2662       }
2663       \new Staff = "tenors" <<
2664         \set Staff.instrumentName = #"Tenor"
2665         \new Voice = "tenors" {
2666           \global
2667           \tenorMusic
2668         }
2669       >>
2670       \new Lyrics \lyricsto "tenors" {
2671         \tenorWords
2672       }
2673       \new Staff = "basses" <<
2674         \set Staff.instrumentName = #"Bass"
2675         \new Voice = "basses" {
2676           \global
2677           \bassMusic
2678         }
2679       >>
2680       \new Lyrics \lyricsto "basses" {
2681         \bassWords
2682       }
2683     >>  % end ChoirStaff
2684
2685     \new PianoStaff <<
2686       \set PianoStaff.instrumentName = #"Piano  "
2687       \new Staff = "upper" \upper
2688       \new Staff = "lower" \lower
2689     >>
2690   >>
2691 }
2692 @end lilypond
2693
2694
2695 @node Building a score from scratch
2696 @subsection Building a score from scratch
2697
2698 @cindex template, writing your own
2699 @cindex example of writing a score
2700 @cindex writing a score, example
2701 @cindex score, example of writing
2702
2703 After gaining some facility with writing LilyPond code, you
2704 may find that it is easier to build a score from scratch
2705 rather than modifying one of the templates.  You can also
2706 develop your own style this way to suit the sort of music you
2707 like.  Let's see how to put together the score for an organ
2708 prelude as an example.
2709
2710 We begin with a header section.  Here go the title, name
2711 of composer, etc, then come any variable definitions, and
2712 finally the score block.  Let's start with these in outline
2713 and fill in the details later.
2714
2715 We'll use the first two bars of Bach's prelude
2716 based on @emph{Jesu, meine Freude} which is written for two
2717 manuals and pedal organ.  You can see these two bars of music
2718 at the bottom of this section.  The top manual part has two voices,
2719 the lower and pedal organ one each.  So we need four
2720 music definitions and one to define the time signature
2721 and key:
2722
2723 @example
2724 \version @w{"@version{}"}
2725 \header @{
2726   title = "Jesu, meine Freude"
2727   composer = "J S Bach"
2728 @}
2729 keyTime = @{ \key c \minor \time 4/4 @}
2730 ManualOneVoiceOneMusic = @{ s1 @}
2731 ManualOneVoiceTwoMusic = @{ s1 @}
2732 ManualTwoMusic = @{ s1 @}
2733 PedalOrganMusic = @{ s1 @}
2734
2735 \score @{
2736 @}
2737 @end example
2738
2739 For now we've just used a spacer note, @code{s1},
2740 instead of the real music.  We'll add that later.
2741
2742 Next let's see what should go in the score block.
2743 We simply mirror the staff structure we want.
2744 Organ music is usually written on three staves,
2745 one for each manual and one for the pedals.  The
2746 manual staves should be bracketed together, so we
2747 need to use a PianoStaff for them.  The first
2748 manual part needs two voices and the second manual
2749 part just one.
2750
2751 @example
2752 \new PianoStaff <<
2753   \new Staff = "ManualOne" <<
2754     \new Voice @{
2755       \ManualOneVoiceOneMusic
2756     @}
2757     \new Voice @{
2758       \ManualOneVoiceTwoMusic
2759     @}
2760   >>  % end ManualOne Staff context
2761   \new Staff = "ManualTwo" <<
2762     \new Voice @{
2763       \ManualTwoMusic
2764     @}
2765   >>  % end ManualTwo Staff context
2766 >>  % end PianoStaff context
2767 @end example
2768
2769 Next we need to add a staff for the pedal organ.
2770 This goes underneath the PianoStaff, but it must
2771 be simultaneous with it, so we need angle brackets
2772 around the two.  Missing these out would generate
2773 an error in the log file.  It's a common mistake
2774 which you'll make sooner or later!  Try copying
2775 the final example at the end of this section,
2776 remove these angle brackets, and compile it to
2777 see what errors it generates.
2778
2779 @example
2780 <<  % PianoStaff and Pedal Staff must be simultaneous
2781   \new PianoStaff <<
2782     \new Staff = "ManualOne" <<
2783       \new Voice @{
2784         \ManualOneVoiceOneMusic
2785       @}
2786       \new Voice @{
2787         \ManualOneVoiceTwoMusic
2788       @}
2789     >>  % end ManualOne Staff context
2790     \new Staff = "ManualTwo" <<
2791       \new Voice @{
2792         \ManualTwoMusic
2793       @}
2794     >>  % end ManualTwo Staff context
2795   >>  % end PianoStaff context
2796   \new Staff = "PedalOrgan" <<
2797     \new Voice @{
2798       \PedalOrganMusic
2799     @}
2800   >>
2801 >>
2802 @end example
2803
2804 It is not necessary to use the simultaneous construct
2805 @code{<< .. >>} for the manual two staff and the pedal organ staff,
2806 since they contain only one music expression, but it does no harm,
2807 and always using angle brackets after @code{\new Staff} is a good
2808 habit to cultivate in case there are multiple voices.  The opposite
2809 is true for Voices: these should habitually be followed by braces
2810 @code{@{ .. @}} in case your music is coded in several variables
2811 which need to run consecutively.
2812
2813 Let's add this structure to the score block, and adjust the indenting.
2814 We also add the appropriate clefs, ensure stems, ties and slurs in
2815 each voice on the upper staff point to the right direction with
2816 @code{\voiceOne} and @code{\voiceTwo}, and enter the key and time
2817 signature to each staff using our predefined variable, @code{\keyTime}.
2818
2819 @example
2820 \score @{
2821   <<  % PianoStaff and Pedal Staff must be simultaneous
2822     \new PianoStaff <<
2823       \new Staff = "ManualOne" <<
2824         \keyTime  % set key and time signature
2825         \clef "treble"
2826         \new Voice @{
2827           \voiceOne
2828           \ManualOneVoiceOneMusic
2829         @}
2830         \new Voice @{
2831           \voiceTwo
2832           \ManualOneVoiceTwoMusic
2833         @}
2834       >>  % end ManualOne Staff context
2835       \new Staff = "ManualTwo" <<
2836         \keyTime
2837         \clef "bass"
2838         \new Voice @{
2839           \ManualTwoMusic
2840         @}
2841       >>  % end ManualTwo Staff context
2842     >>  % end PianoStaff context
2843     \new Staff = "PedalOrgan" <<
2844       \keyTime
2845       \clef "bass"
2846       \new Voice @{
2847         \PedalOrganMusic
2848       @}
2849     >>  % end PedalOrgan Staff
2850   >>
2851 @}  % end Score context
2852 @end example
2853
2854 @cindex stretchability of staves
2855 @cindex staves, stretchability
2856
2857 The above layout of the organ staves is almost perfect; however,
2858 there is a slight defect which is not visible by looking at just a
2859 single system: The distance of the pedal staff to the left hand staff
2860 should behave approximately the same as the right hand staff to the
2861 left hand staff.  In particular, the stretchability of staves in a
2862 @code{PianoStaff} context is limited (so that the distance between
2863 the staves for the left and right hand can't become too large), and
2864 the pedal staff should behave similarly.
2865
2866 @cindex sub-properties
2867 @cindex properties, sub-properties
2868 @cindex graphical objects
2869 @cindex objects, graphical
2870 @cindex grobs
2871
2872 Stretchability of staves can be controlled with the
2873 @code{staff-staff-spacing} property of the
2874 @code{VerticalAxisGroup} @q{graphical object} (commonly called
2875 @q{grob}s within the lilypond documentation) -- don't worry about
2876 the details right now; this is fully explained later.  For the
2877 curious, have a look at @ruser{Overview of modifying properties}.
2878 In this case, we want to modify the @code{stretchability}
2879 sub-property only. Again, for the curious, you can find the
2880 default values for the staff-staff-spacing property
2881 in file @file{scm/define-grobs.scm} by looking up the definition
2882 of the @code{VerticalAxisGroup} grob.  The value for
2883 @code{stretchability} is taken from the definition of the
2884 @code{PianoStaff} context (in file @file{ly/engraver-init.ly})
2885 so that the values are identical.
2886
2887 @example
2888 \score @{
2889   <<  % PianoStaff and Pedal Staff must be simultaneous
2890     \new PianoStaff <<
2891       \new Staff = "ManualOne" <<
2892         \keyTime  % set key and time signature
2893         \clef "treble"
2894         \new Voice @{
2895           \voiceOne
2896           \ManualOneVoiceOneMusic
2897         @}
2898         \new Voice @{
2899           \voiceTwo
2900           \ManualOneVoiceTwoMusic
2901         @}
2902       >>  % end ManualOne Staff context
2903       \new Staff = "ManualTwo" \with @{
2904         \override VerticalAxisGroup.staff-staff-spacing.stretchability = 5
2905       @} <<
2906         \keyTime
2907         \clef "bass"
2908         \new Voice @{
2909           \ManualTwoMusic
2910         @}
2911       >>  % end ManualTwo Staff context
2912     >>  % end PianoStaff context
2913     \new Staff = "PedalOrgan" <<
2914       \keyTime
2915       \clef "bass"
2916       \new Voice @{
2917         \PedalOrganMusic
2918       @}
2919     >>  % end PedalOrgan Staff
2920   >>
2921 @}  % end Score context
2922 @end example
2923 That completes the structure.  Any three-staff organ music
2924 will have a similar structure, although the number of voices
2925 may vary.  All that remains now
2926 is to add the music, and combine all the parts together.
2927
2928 @lilypond[quote,verbatim,ragged-right,addversion]
2929 \header {
2930   title = "Jesu, meine Freude"
2931   composer = "J S Bach"
2932 }
2933 keyTime = { \key c \minor \time 4/4 }
2934 ManualOneVoiceOneMusic = \relative {
2935   g'4 g f ees |
2936   d2 c |
2937 }
2938 ManualOneVoiceTwoMusic = \relative {
2939   ees'16 d ees8~ 16 f ees d c8 d~ d c~ |
2940   8 c4 b8 c8. g16 c b c d |
2941 }
2942 ManualTwoMusic = \relative {
2943   c'16 b c8~ 16 b c g a8 g~ 16 g aes ees |
2944   f16 ees f d g aes g f ees d ees8~ 16 f ees d |
2945 }
2946 PedalOrganMusic = \relative {
2947   r8 c16 d ees d ees8~ 16 a, b g c b c8 |
2948   r16 g ees f g f g8 c,2 |
2949 }
2950
2951 \score {
2952   <<  % PianoStaff and Pedal Staff must be simultaneous
2953     \new PianoStaff <<
2954       \new Staff = "ManualOne" <<
2955         \keyTime  % set key and time signature
2956         \clef "treble"
2957         \new Voice {
2958           \voiceOne
2959           \ManualOneVoiceOneMusic
2960         }
2961         \new Voice {
2962           \voiceTwo
2963           \ManualOneVoiceTwoMusic
2964         }
2965       >>  % end ManualOne Staff context
2966       \new Staff = "ManualTwo" \with {
2967         \override VerticalAxisGroup.staff-staff-spacing.stretchability = 5
2968       } <<
2969         \keyTime
2970         \clef "bass"
2971         \new Voice {
2972           \ManualTwoMusic
2973         }
2974       >>  % end ManualTwo Staff context
2975     >>  % end PianoStaff context
2976     \new Staff = "PedalOrgan" <<
2977       \keyTime
2978       \clef "bass"
2979       \new Voice {
2980         \PedalOrganMusic
2981       }
2982     >>  % end PedalOrgan Staff context
2983   >>
2984 }  % end Score context
2985 @end lilypond
2986
2987 @seealso
2988 Music Glossary:
2989 @rglos{system}.
2990
2991 @node Saving typing with variables and functions
2992 @subsection Saving typing with variables and functions
2993
2994 @cindex variables
2995 @cindex variables
2996
2997 By this point, you've seen this kind of thing:
2998
2999 @lilypond[quote,verbatim,ragged-right]
3000 hornNotes = \relative { c''4 b dis c }
3001
3002 \score {
3003   {
3004     \hornNotes
3005   }
3006 }
3007 @end lilypond
3008
3009 You may even realize that this could be useful in minimalist music:
3010
3011 @lilypond[quote,verbatim,ragged-right]
3012 fragmentA = \relative { a'4 a8. b16 }
3013 fragmentB = \relative { a'8. gis16 ees4 }
3014
3015 violin = \new Staff {
3016   \fragmentA \fragmentA |
3017   \fragmentB \fragmentA |
3018 }
3019
3020 \score {
3021   {
3022     \violin
3023   }
3024 }
3025 @end lilypond
3026
3027 However, you can also use these variables (also known as
3028 macros, or user-defined commands) for tweaks:
3029
3030 @c TODO Avoid padtext - not needed with skylining
3031 @lilypond[quote,verbatim,ragged-right]
3032 dolce = \markup { \italic \bold dolce }
3033
3034 padText = { \once \override TextScript.padding = #5.0 }
3035 fthenp =_\markup {
3036   \dynamic f \italic \small { 2nd } \hspace #0.1 \dynamic p
3037 }
3038
3039 violin = \relative c'' {
3040   \repeat volta 2 {
3041     c4._\dolce b8 a8 g a b |
3042     \padText
3043     c4.^"hi there!" d8 e' f g d |
3044     c,4.\fthenp b8 c4 c-. |
3045   }
3046 }
3047
3048 \score {
3049   {
3050     \violin
3051   }
3052   \layout { ragged-right = ##t }
3053 }
3054 @end lilypond
3055
3056 These variables are obviously useful for saving
3057 typing.  But they're worth considering even if you
3058 only use them once -- they reduce complexity.  Let's
3059 look at the previous example without any
3060 variables.  It's a lot harder to read, especially
3061 the last line.
3062
3063 @example
3064 violin = \relative c'' @{
3065   \repeat volta 2 @{
3066     c4._\markup @{ \italic \bold dolce @} b8 a8 g a b |
3067     \once \override TextScript.padding = #5.0
3068     c4.^"hi there!" d8 e' f g d |
3069     c,4.\markup @{
3070       \dynamic f \italic \small @{ 2nd @} \hspace #0.1 \dynamic p
3071     @}
3072     b8 c4 c-. |
3073   @}
3074 @}
3075 @end example
3076
3077 @c TODO Replace the following with a better example  -td
3078 @c Skylining handles this correctly without padText
3079
3080 So far we've seen static substitution -- when LilyPond
3081 sees @code{\padText}, it replaces it with the stuff that
3082 we've defined it to be (ie the stuff to the right of
3083 @code{padtext=}).
3084
3085 LilyPond can handle non-static substitution, too (you
3086 can think of these as functions).
3087
3088 @lilypond[quote,verbatim,ragged-right]
3089 padText =
3090 #(define-music-function
3091      (parser location padding)
3092      (number?)
3093    #{
3094      \once \override TextScript.padding = #padding
3095    #})
3096
3097 \relative {
3098   c'''4^"piu mosso" b a b |
3099   \padText #1.8
3100   c4^"piu mosso" d e f |
3101   \padText #2.6
3102   c4^"piu mosso" fis a g |
3103 }
3104 @end lilypond
3105
3106 Using variables is also a good way to reduce work if the
3107 LilyPond input syntax changes (see
3108 @rprogram{Updating files with convert-ly}).  If
3109 you have a single definition (such as @code{\dolce}) for all your
3110 input files (see @ref{Style sheets}), then if the syntax changes, you
3111 only need to update your single @code{\dolce} definition,
3112 instead of making changes throughout every @file{.ly} file.
3113
3114
3115 @node Scores and parts
3116 @subsection Scores and parts
3117
3118 In orchestral music, all notes are printed twice.  Once in a part for
3119 the musicians, and once in a full score for the conductor.  Variables can
3120 be used to avoid double work.  The music is entered once, and stored in
3121 a variable.  The contents of that variable is then used to generate
3122 both the part and the full score.
3123
3124 It is convenient to define the notes in a special file.  For example,
3125 suppose that the file @file{horn-music.ly} contains the following part
3126 of a horn/@/bassoon duo
3127
3128 @example
3129 hornNotes = \relative @{
3130   \time 2/4
3131   r4 f8 a | cis4 f | e4 d |
3132 @}
3133 @end example
3134
3135 @noindent
3136 Then, an individual part is made by putting the following in a file
3137
3138 @example
3139 \include "horn-music.ly"
3140
3141 \header @{
3142   instrument = "Horn in F"
3143 @}
3144
3145 @{
3146  \transpose f c' \hornNotes
3147 @}
3148 @end example
3149
3150 The line
3151
3152 @example
3153 \include "horn-music.ly"
3154 @end example
3155
3156 @noindent
3157 substitutes the contents of @file{horn-music.ly} at this position in
3158 the file, so @code{hornNotes} is defined afterwards.  The command
3159 @code{\transpose f@tie{}c'} indicates that the argument, being
3160 @code{\hornNotes}, should be transposed by a fifth upwards.  Sounding
3161 @code{f} is denoted by notated @code{c'}, which corresponds with the
3162 tuning of a normal French Horn in@tie{}F.  The transposition can be seen
3163 in the following output
3164
3165 @lilypond[quote,ragged-right]
3166 \transpose f c' \relative {
3167   \time 2/4
3168   r4 f8 a | cis4 f | e4 d |
3169 }
3170 @end lilypond
3171
3172 In ensemble pieces, one of the voices often does not play for many
3173 measures.  This is denoted by a special rest, the multi-measure
3174 rest.  It is entered with a capital @code{R} followed by a duration
3175 (@code{1}@tie{}for a whole note, @code{2}@tie{}for a half note,
3176 etc.).  By multiplying the
3177 duration, longer rests can be constructed.  For example, this rest
3178 takes 3@tie{}measures in 2/4 time
3179
3180 @example
3181 R2*3
3182 @end example
3183
3184 When printing the part, multi-rests
3185 must be condensed.  This is done by setting a run-time variable
3186
3187 @example
3188 \set Score.skipBars = ##t
3189 @end example
3190
3191 @noindent
3192 This command sets the property @code{skipBars} in the
3193 @code{Score} context to true (@code{##t}).  Prepending the rest and
3194 this option to the music above, leads to the following result
3195
3196 @lilypond[quote,ragged-right]
3197 \transpose f c' \relative c {
3198   \time 2/4
3199   \set Score.skipBars = ##t
3200   R2*3 |
3201   r4 f8 a | cis4 f | e4 d |
3202 }
3203 @end lilypond
3204
3205
3206 The score is made by combining all of the music together.  Assuming
3207 that the other voice is in @code{bassoonNotes} in the file
3208 @file{bassoon-music.ly}, a score is made with
3209
3210 @example
3211 \include "bassoon-music.ly"
3212 \include "horn-music.ly"
3213
3214 <<
3215   \new Staff \hornNotes
3216   \new Staff \bassoonNotes
3217 >>
3218 @end example
3219
3220 @noindent
3221 leading to
3222
3223 @lilypond[quote,ragged-right]
3224 \relative <<
3225   \new Staff {
3226     \clef "treble"
3227     \time 2/4
3228     R2*3 |
3229     r4 f8 a | cis4 f | e4 d |
3230   }
3231   \new Staff {
3232     \clef "bass"
3233     \time 2/4
3234     r4 d,8 f | gis4 c | b4 bes |
3235     a8 e f4 | g4 d | gis4 f |
3236   }
3237 >>
3238 @end lilypond
3239
3240
3241