]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation.itely
Small fixes.
[lilypond.git] / Documentation / user / notation.itely
1 @c -*- coding: latin-1; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8 @node Notation manual
9 @chapter Notation manual
10
11 This chapter describes all the different types of notation supported
12 by LilyPond.  It is intended as a reference for users who are already
13 somewhat familiar with LilyPond.
14
15 @menu
16 * Note entry::                  
17 * Easier music entry::          
18 * Staff notation::              
19 * Polyphony::                   
20 * Beaming::                     
21 * Accidentals::                 
22 * Expressive marks::            
23 * Repeats::                     
24 * Rhythmic music::              
25 * Piano music::                 
26 * Vocal music::                 
27 * Other instrument specific notation::  
28 * Tablatures::                  
29 * Popular music::               
30 * Orchestral music::            
31 * Ancient notation::            
32 * Contemporary notation::       
33 * Educational use::             
34 @end menu
35
36 @c FIXME: Note entry vs Music entry at top level menu is confusing.
37
38 @node Note entry
39 @section Note entry
40 @cindex Note entry
41
42 This section is about basic notation elements like notes, rests, and
43 related constructs, such as stems, tuplets and ties.
44
45 @menu
46 * Notes::                       
47 * Pitches::                     
48 * Chromatic alterations::       
49 * Micro tones::                 
50 * Chords::                      
51 * Rests::                       
52 * Skips::                       
53 * Durations::                   
54 * Augmentation dots::           
55 * Scaling durations::           
56 * Stems::                       
57 * Ties::                        
58 * Tuplets::                     
59 @end menu
60
61
62 @node Notes
63 @subsection Notes
64
65
66 A note is printed by specifying its pitch and then its duration,
67
68 @lilypond[quote,verbatim,raggedright]
69 { cis'4 d'8 e'16 c'16 }
70 @end lilypond
71
72
73 @node Pitches
74 @subsection Pitches
75
76 @cindex Pitch names
77 @cindex Note specification
78 @cindex pitches
79 @cindex entering notes
80
81 The most common syntax for pitch entry is used for standard notes and
82 @code{\chordmode} modes.  In these modes, pitches may be designated by
83 names.  The notes are specified by the letters @code{a} through
84 @code{g}.  The octave is formed with notes ranging from @code{c}
85 to @code{b}.  The pitch @code{c} is an octave below middle C and the
86 letters span the octave above that C
87
88 @lilypond[quote,fragment,verbatim]
89 \clef bass
90 a,4 b, c d e f g a b c' d' e' \clef treble f' g' a' b' c''
91 @end lilypond
92
93 @cindex note names, Dutch
94
95 A sharp is formed by adding @code{-is} to the end of a pitch name and
96 a flat is formed by adding @code{-es}.  Double sharps and double flats
97 are obtained by adding @code{-isis} or @code{-eses}.  These
98 names are the Dutch note names.  In Dutch, @code{aes} is contracted to
99 @code{as}, but both forms are accepted.  Similarly, both
100 @code{es} and @code{ees} are accepted
101
102 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
103 ceses4
104 ces
105 c
106 cis
107 cisis
108 @end lilypond
109
110 In accordance with standard typsetting rules, a natural sign is printed
111 before a sharp or flat if a previous accidental needs to be
112 cancelled.  To change this behaviour, use
113 @code{\set Staff.extraNatural = ##f}
114
115 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
116 ceses4 ces cis c
117 \set Staff.extraNatural = ##f
118 ceses4 ces cis c
119 @end lilypond
120
121 There are predefined sets of note names for various other languages.
122 To use them, include the language specific init file.  For
123 example: @code{\include "english.ly"}.  The available language files
124 and the note names they define are
125
126 @anchor{note name}
127 @anchor{note names}
128 @example
129                         Note Names               sharp       flat
130 nederlands.ly  c   d   e   f   g   a   bes b   -is         -es
131 english.ly     c   d   e   f   g   a   bf  b   -s/-sharp   -f/-flat
132                                                -x (double)
133 deutsch.ly     c   d   e   f   g   a   b   h   -is         -es
134 norsk.ly       c   d   e   f   g   a   b   h   -iss/-is    -ess/-es
135 svenska.ly     c   d   e   f   g   a   b   h   -iss        -ess
136 italiano.ly    do  re  mi  fa  sol la  sib si  -d          -b
137 catalan.ly     do  re  mi  fa  sol la  sib si  -d/-s       -b
138 espanol.ly     do  re  mi  fa  sol la  sib si  -s          -b
139 @end example
140
141 @cindex @code{'}
142 @cindex @code{,}
143
144
145
146 The optional octave specification takes the form of a series of
147 single quote (`@code{'}') characters or a series of comma
148 (`@code{,}') characters.  Each @code{'} raises the pitch by one
149 octave; each @code{,} lowers the pitch by an octave
150
151 @lilypond[quote,raggedright,fragment,verbatim]
152 c' c'' es' g' as' gisis' ais'
153 @end lilypond
154
155 @c FIXME: we need this info (hide/unhide) somewhere in the manual, but this ain't the place.  -gp
156 @refcommands
157 Notes can be hidden and unhidden with the following commands
158
159 @cindex @code{\hideNotes}
160 @code{\hideNotes},
161 @cindex @code{\unHideNotes}
162 @code{\unHideNotes}.
163
164
165 @seealso
166
167 Program reference: @internalsref{NoteEvent}, and @internalsref{NoteHead}.
168
169
170
171 @node Chromatic alterations
172 @subsection Chromatic alterations
173
174 Normally accidentals are printed automatically, but you may also
175 print them manually.  A reminder accidental
176 @cindex reminder accidental
177 @cindex @code{?}
178 can be forced by adding an exclamation mark @code{!}
179 after the pitch.  A cautionary accidental
180 @cindex cautionary accidental
181 @cindex parenthesized accidental
182 (i.e., an accidental within parentheses) can be obtained by adding the
183 question mark `@code{?}' after the pitch.
184
185 @lilypond[quote,raggedright,fragment,verbatim]
186 cis' cis' cis'! cis'?
187 @end lilypond
188
189
190 @seealso
191
192 The automatic production of accidentals can be tuned in many
193 ways.  For more information, refer to @ref{Automatic accidentals}.
194
195
196
197 @node Micro tones
198 @subsection Micro tones
199
200 Half-flats and half-sharps are formed by adding @code{-eh} and
201 @code{-ih}; the following is a series of Cs with increasing pitches
202
203 @cindex quarter tones
204 @cindex semi-flats, semi-sharps
205
206 @lilypond[verbatim,raggedright,quote,relative=2,fragment]
207 { ceseh ceh cih cisih }
208 @end lilypond
209
210 Micro tones are also exported to the MIDI file
211
212
213 @refbugs
214
215 There are no generally accepted standards for denoting three quarter
216 flats, so LilyPond's symbol does not conform to any standard.
217
218 @node Chords
219 @subsection Chords
220
221 A chord is formed by a enclosing a set of pitches in @code{<} and
222 @code{>}.  A chord may be followed by a duration, and a set of
223 articulations, just like simple notes
224
225 @lilypond[verbatim,raggedright,fragment,quote,relative=1]
226 <c e g>4 <c>8
227 @end lilypond
228
229 @node Rests
230 @subsection Rests
231 @cindex Rests
232
233
234 @cindex @code{\rest}
235 @cindex @code{r}
236
237 Rests are entered like notes, with the note name @code{r}
238
239 @lilypond[fragment,quote,raggedright,verbatim]
240 r1 r2 r4 r8
241 @end lilypond
242
243 Whole bar rests, centered in middle of the bar,
244 must be done with multi-measure rests.  They are discussed in
245 @ref{Multi measure rests}.
246
247
248 A rest's vertical position may be explicitly specified by entering a
249 note with the @code{\rest} keyword appended, the rest will be placed at
250 the note's place.  This makes manual formatting in polyphonic music
251 easier.  Automatic rest collision formatting will leave these rests
252 alone
253
254 @lilypond[fragment,quote,raggedright,verbatim]
255 a'4\rest d'4\rest
256 @end lilypond
257
258 @seealso
259
260 Program reference: @internalsref{RestEvent}, and @internalsref{Rest}.
261
262
263 @c FIXME: naming.
264 @node Skips
265 @subsection Skips
266 @cindex Skip
267 @cindex Invisible rest
268 @cindex Space note
269
270 @cindex @code{\skip}
271 @cindex @code{s}
272 An invisible rest (also called a `skip') can be entered like a note
273 with note name `@code{s}' or with @code{\skip @var{duration}}
274
275 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
276 a4 a4 s4 a4 \skip 1 a4
277 @end lilypond
278
279 The @code{s} syntax is only available in note mode and chord mode.  In
280 other situations, for example, when entering lyrics, you should use
281 the @code{\skip} command
282
283 @lilypond[quote,raggedright,verbatim]
284 <<
285   \relative { a'2 a1 }
286   \new Lyrics \lyricmode { \skip 2 bla1 }
287 >>
288 @end lilypond
289
290 The skip command is merely an empty musical placeholder.  It does not
291 produce any output, not even transparent output.
292
293 The @code{s} skip command does create @internalsref{Staff} and
294 @internalsref{Voice} when necessary, similar to note and rest
295 commands.  For example, the following results in an empty staff.
296
297 @lilypond[quote,raggedright,verbatim]
298 { s4 }
299 @end lilypond
300
301 The fragment @code{@{ \skip 4 @} } would produce an empty page.
302
303 @seealso
304
305 Program reference: @internalsref{SkipEvent}, @internalsref{SkipMusic}.
306
307
308
309 @node Durations
310 @subsection Durations
311
312
313 @cindex duration
314 @cindex @code{\longa}
315 @cindex @code{\breve}
316 @cindex @code{\maxima}
317
318
319 In Note, Chord, and Lyrics mode, durations are designated by numbers and
320 dots: durations are entered as their reciprocal values.  For example, a
321 quarter note is entered using a @code{4} (since it is a 1/4 note), while
322 a half note is entered using a @code{2} (since it is a 1/2 note).  For
323 notes longer than a whole you must use the variables @code{\longa} and
324 @code{\breve}
325
326 @example
327 c'\breve
328 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64
329 r\longa r\breve
330 r1 r2 r4 r8 r16 r32 r64 r64
331 @end example
332
333 @lilypond[quote]
334 \score {
335  \relative c'' {
336     a\breve*1/2 \autoBeamOff
337     a1 a2 a4 a8 a16 a32 a64 a64
338    \bar "empty"
339    \break
340     r\longa*1/4 r\breve *1/2
341     r1 r2 r4 r8 r16 r32 r64 r64
342   }
343   \layout {
344     raggedright = ##t
345     \context {
346       \Staff
347         \remove "Clef_engraver"
348         \override StaffSymbol #'transparent = ##t
349         \override TimeSignature #'transparent = ##t
350         \override BarLine #'transparent = ##t
351         \consists "Pitch_squash_engraver"
352     }
353   }
354 }
355 @end lilypond
356
357 If the duration is omitted then it is set to the previously entered
358 duration.  The default for the first note is a quarter note.
359
360 @lilypond[quote,raggedright,verbatim,fragment]
361 { a a a2 a a4 a a1 a }
362 @end lilypond
363
364
365
366 @node Augmentation dots
367 @subsection Augmentation dots
368
369 @cindex @code{.}
370 To obtain dotted note lenghts, simply add a dot (`@code{.}') to
371 the number.  Double-dotted notes are produced in a similar way.
372
373 @lilypond[quote,raggedright,fragment,verbatim]
374 a'4 b' c''4. b'8 a'4. b'4.. c''8.
375 @end lilypond
376
377 @refcommands
378
379 Dots are normally moved up to avoid staff lines, except in polyphonic
380 situations.  The following commands may be used to force a particular
381 direction manually
382
383 @cindex @code{\dotsUp}
384 @code{\dotsUp},
385 @cindex @code{\dotsDown}
386 @code{\dotsDown},
387 @cindex @code{\dotsNeutral}
388 @code{\dotsNeutral}.
389
390 @seealso
391
392 Program reference: @internalsref{Dots}, and @internalsref{DotColumn}.
393
394 @node Scaling durations
395 @subsection Scaling durations
396
397 You can alter the length of duration by a fraction @var{N/M}
398 appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}).  This
399 will not affect the appearance of the notes or rests produced.
400
401 In the following example, the first three notes take up exactly two
402 beats, but no triplet bracket is printed.
403 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
404 \time 2/4
405 a4*2/3 gis4*2/3 a4*2/3
406 a4 a4 a4*2
407 b16*4 c4
408 @end lilypond
409
410
411 @seealso
412
413 This manual: @ref{Tuplets}
414
415
416 @c TODO: I'm not certain that Stems belong here in the manual.  -gp
417 @node Stems
418 @subsection Stems
419
420 Whenever a note is found, a @internalsref{Stem} object is created
421 automatically.  For whole notes and rests, they are also created but
422 made invisible.
423
424 @refcommands
425
426 @cindex @code{\stemUp}
427 @code{\stemUp},
428 @cindex @code{\stemDown}
429 @code{\stemDown},
430 @cindex @code{\stemNeutral}
431 @code{\stemNeutral}.
432
433
434 @node Ties
435 @subsection Ties
436
437 @cindex Tie
438 @cindex ties
439 @cindex @code{~}
440
441 A tie connects two adjacent note heads of the same pitch.  The tie in
442 effect extends the length of a note.  Ties should not be confused with
443 slurs, which indicate articulation, or phrasing slurs, which indicate
444 musical phrasing.  A tie is entered using the tilde symbol `@code{~}'
445
446 @lilypond[quote,raggedright,fragment,verbatim]
447 e' ~ e' <c' e' g'> ~ <c' e' g'>
448 @end lilypond
449
450 When a tie is applied to a chord, all note heads whose pitches match
451 are connected.  When no note heads match, no ties will be created.
452
453 A tie is just a way of extending a note duration, similar to the
454 augmentation dot.  The following example shows two ways of notating
455 exactly the same concept
456 @c
457 @lilypond[quote,fragment,raggedright]
458 \time 3/4 c'2. c'2 ~ c'4
459 @end lilypond
460
461 @noindent
462 Ties are used either when the note crosses a bar line, or when dots
463 cannot be used to denote the rhythm.  When using ties, larger note
464 values should be aligned to subdivisions of the measure, eg.
465
466 @lilypond[fragment,quote,raggedright]
467 \relative {
468   r8 c8 ~ c2 r4 | r8^"not" c2 ~ c8 r4
469 }
470 @end lilypond
471
472 If you need to tie a lot of notes over bars, it may be easier to use
473 automatic note splitting (see @ref{Automatic note splitting}).  This
474 mechanism automatically splits long notes, and ties them across bar
475 lines.
476
477 @refcommands
478
479
480 @cindex @code{\tieUp}
481 @code{\tieUp},
482 @cindex @code{\tieDown}
483 @code{\tieDown},
484 @cindex @code{\tieNeutral}
485 @code{\tieNeutral},
486 @cindex @code{\tieDotted}
487 @code{\tieDotted},
488 @cindex @code{\tieSolid}
489 @code{\tieSolid}.
490
491 @seealso
492
493 In this manual: @ref{Automatic note splitting}.
494
495 Program reference: @internalsref{TieEvent}, @internalsref{Tie}.
496
497 @refbugs
498
499
500 Switching staves when a tie is active will not produce a slanted tie.
501
502 Formatting of ties is a difficult subject.  The results are often not
503 optimal.
504
505 @node Tuplets
506 @subsection Tuplets
507
508 @cindex tuplets
509 @cindex triplets
510 @cindex @code{\times}
511
512 Tuplets are made out of a music expression by multiplying all durations
513 with a fraction
514
515 @cindex @code{\times}
516 @example
517 \times @var{fraction} @var{musicexpr}
518 @end example
519
520 @noindent
521 The duration of @var{musicexpr} will be multiplied by the fraction.
522 The fraction's denominator will be printed over the notes, optionally
523 with a bracket.  The most common tuplet is the triplet in which 3
524 notes have the length of 2, so the notes are 2/3 of their written
525 length
526
527 @lilypond[quote,raggedright,fragment,verbatim]
528 g'4 \times 2/3 {c'4 c' c'} d'4 d'4
529 @end lilypond
530
531 The property @code{tupletSpannerDuration} specifies how long each
532 bracket should last.  With this, you can make lots of tuplets while
533 typing @code{\times} only once, thus saving lots of typing.  In the next
534 example, there are two triplets shown, while @code{\times} was only
535 used once
536
537 @lilypond[quote,fragment,relative=1,raggedright,verbatim]
538 \set tupletSpannerDuration = #(ly:make-moment 1 4)
539 \times 2/3 { c'8 c c c c c }
540 @end lilypond
541
542 The format of the number is determined by the property
543 @code{tupletNumberFormatFunction}.  The default prints only the
544 denominator, but if it is set to the Scheme function
545 @code{fraction-tuplet-formatter}, @var{num}:@var{den} will be printed
546 instead.
547
548
549 @cindex @code{tupletNumberFormatFunction}
550 @cindex tuplet formatting
551
552
553 @refcommands
554
555 @cindex @code{\tupletUp}
556 @code{\tupletUp},
557 @cindex @code{\tupletDown}
558 @code{\tupletDown},
559 @cindex @code{\tupletNeutral}
560 @code{\tupletNeutral}.
561
562 @seealso
563
564 User manual: @ref{Changing context properties on the fly} for the
565 @code{\set} command.
566
567
568 Program reference: @internalsref{TupletBracket}, and @internalsref{TimeScaledMusic}.
569
570 Examples: @inputfileref{input/@/regression,tuplet@/-nest@/.ly}.
571
572 @refbugs
573
574 Nested tuplets are not formatted automatically.  In this case, outer
575 tuplet brackets should be moved manually, which is demonstrated in
576 @inputfileref{input/@/regression,tuplet@/-nest@/.ly}.
577
578
579
580 @node Easier music entry
581 @section Easier music entry
582 @cindex Music entry
583
584 This section deals with tricks and features of the input language that
585 were added solely to help entering music and finding and correcting
586 mistakes.  There are also external tools that make debugging easier.
587 See @ref{Point and click} for more information.
588
589 It is also possible to enter and edit music using other programs, such as
590 GUI interfaces or MIDI sequencers.  Refer to the LilyPond
591 website for more information.
592
593
594 @menu
595 * Relative octaves::            
596 * Octave check::                
597 * Bar check::                   
598 * Skipping corrected music::    
599 * Automatic note splitting::    
600 @end menu
601
602
603
604
605 @node Relative octaves
606 @subsection Relative octaves
607 @cindex Relative
608 @cindex relative octave specification
609
610 Octaves are specified by adding @code{'} and @code{,} to pitch names.
611 When you copy existing music, it is easy to accidentally put a pitch
612 in the wrong octave and hard to find such an error.  The relative
613 octave mode prevents these errors by making the mistakes much
614 larger: a single error puts the rest of the piece off by one octave
615
616 @cindex @code{\relative}
617 @example
618 \relative @var{startpitch} @var{musicexpr}
619 @end example
620
621 @noindent
622 or
623
624 @example
625 \relative @var{musicexpr}
626 @end example
627
628 The octave of notes that appear in @var{musicexpr} are calculated as
629 follows: if no octave changing marks are used, the basic interval
630 between this and the last note is always taken to be a fourth or
631 less.  This distance is determined without regarding alterations; a
632 @code{fisis} following a @code{ceses} will be put above the
633 @code{ceses}.  In other words, a doubly-augmented fourth is considered
634 a smaller interval than a diminshed fifth, even though the fourth is
635 seven semitones while the fifth is only six semitones.
636
637 The octave changing marks @code{'} and @code{,} can be added to raise
638 or lower the pitch by an extra octave.  Upon entering relative mode,
639 an absolute starting pitch can be specified that will act as the
640 predecessor of the first note of @var{musicexpr}.  If no starting pitch
641 is specified, then middle C is used as a start.
642
643 Here is the relative mode shown in action
644 @lilypond[quote,fragment,raggedright,verbatim]
645 \relative c'' {
646   b c d c b c bes a
647 }
648 @end lilypond
649
650 Octave changing marks are used for intervals greater than a fourth
651 @lilypond[quote,raggedright,fragment,verbatim]
652 \relative c'' {
653   c g c f, c' a, e''
654 }
655 @end lilypond
656
657 If the preceding item is a chord, the first note of the chord is used
658 to determine the first note of the next chord
659
660 @lilypond[quote,raggedright,fragment,verbatim]
661 \relative c' {
662   c <c e g>
663   <c' e g>
664   <c, e' g>
665 }
666 @end lilypond
667
668 The pitch after the @code{\relative} contains a note name.
669
670
671 The relative conversion will not affect @code{\transpose},
672 @code{\chordmode} or @code{\relative} sections in its argument.  To use
673 relative within transposed music, an additional @code{\relative} must
674 be placed inside @code{\transpose}.
675
676 @node Octave check
677 @subsection Octave check
678
679
680 Octave checks make octave errors easier to correct: a note may be
681 followed by @code{=}@var{quotes} which indicates what its absolute
682 octave should be.  In the following example,
683 @example
684 \relative c'' @{ c='' b=' d,='' @}
685 @end example
686
687 @noindent
688 @c take care with @code, adds confusing quotes.
689 the @code{d} will generate a warning, because a @code{d''} is expected
690 (because @code{b'} to @code{d''} is only a third), but a @code{d}' is
691 found.  In the output, the octave is corrected to be a @code{d''} and
692 the next note is calculated relative to @code{d''} instead of @code{d'}.
693
694
695
696 There is also a syntax that is separate from the notes.  The syntax
697
698 @example
699 \octave @var{pitch}
700 @end example
701
702 This checks that @var{pitch} (without quotes) yields @var{pitch} (with
703 quotes) in \relative mode.  If not, a warning is printed, and the
704 octave is corrected.
705
706 In the example below, the first check passes without incident, since
707 the @code{e} (in relative mode) is within a fifth of @code{a'}.  However,
708 the second check produces a warning, since the @code{e} is not within
709 a fifth of @code{b'}.  The warning message is printed, and the octave
710 is adjusted so that the following notes are in the correct octave
711 once again.
712
713 @example
714 \relative c' @{
715   e
716   \octave a'
717   \octave b'
718 @}
719 @end example
720
721
722 The octave of a note following an octave check is determined with
723 respect to the note preceding it.  In the next fragment, the last note
724 is a @code{a'}, above middle C.  That means that the @code{\octave}
725 check passes successfully, so the check could be deleted without changing
726 the output of the piece.
727
728 @lilypond[quote,raggedright,verbatim,fragment]
729 \relative c' {
730   e
731   \octave b
732   a
733 }
734 @end lilypond
735
736 @node Bar check
737 @subsection Bar check
738 @cindex Bar check
739
740 @cindex bar check
741 @cindex @code{barCheckSynchronize}
742 @cindex @code{|}
743
744 Bar checks help detect errors in the durations.  A bar check is
745 entered using the bar symbol, `@code{|}'.  Whenever it is encountered
746 during interpretation, it should fall on a measure boundary.  If it
747 does not, a warning is printed.  In the next example, the second bar
748 check will signal an error
749 @example
750 \time 3/4 c2 e4 | g2 |
751 @end example
752
753 Bar checks can also be used in lyrics, for example
754
755 @example
756 \lyricmode @{
757   \time 2/4
758   Twin -- kle | Twin -- kle
759 @}
760 @end example
761
762
763 @cindex @code{skipTypesetting}
764
765 Failed bar checks are caused by entering incorrect
766 durations.  Incorrect durations often completely garble up the score,
767 especially if the score is polyphonic, so a good place to start correcting
768 input is by scanning for failed bar checks and incorrect durations.  To
769 speed up this process, the @code{skipTypesetting} feature may be
770 used.  It is described in the next section.
771
772 @cindex @code{|}
773 @cindex @code{pipeSymbol}
774
775 It is also possible to redefine the meaning of @code{|}.  This is done
776 by assigning a music expression to @code{pipeSymbol},
777
778 @lilypond[quote,raggedright,verbatim]
779 pipeSymbol = \bar "||"
780
781 { c'2 c' | c'2 c }
782 @end lilypond
783
784
785 @node Skipping corrected music
786 @subsection Skipping corrected music
787
788 The property @code{Score.skipTypesetting} can be used to switch on and
789 off typesetting completely during the interpretation phase.  When
790 typesetting is switched off, the music is processed much more
791 quickly.  This can be used to skip over the parts of a score that
792 have already been checked for errors
793
794 @lilypond[quote,fragment,raggedright,verbatim]
795 \relative c'' {
796   c8 d
797   \set Score.skipTypesetting = ##t
798   e e e e e e e e
799   \set Score.skipTypesetting = ##f
800   c d b bes a g c2 }
801 @end lilypond
802
803 In polyphonic music, @code{Score.skipTypesetting} will affect all
804 voices and staves, saving even more time.
805
806 @node Automatic note splitting
807 @subsection Automatic note splitting
808
809 Long notes can be converted automatically to tied notes.  This is done
810 by replacing the @internalsref{Note_heads_engraver} by the
811 @internalsref{Completion_heads_engraver}.
812 In the following examples, notes crossing the bar line are split and tied.
813
814
815 @lilypond[quote,fragment,verbatim,relative=1,linewidth=12\cm]
816 \new Voice \with {
817   \remove "Note_heads_engraver"
818   \consists "Completion_heads_engraver"
819 } {
820   c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2
821 }
822 @end lilypond
823
824 This engraver splits all running notes at the bar line, and inserts
825 ties.  One of its uses is to debug complex scores: if the measures are
826 not entirely filled, then the ties exactly show how much each measure
827 is off.
828
829 @refbugs
830
831 Not all durations (especially those containing tuplets) can be
832 represented exactly with normal notes and dots, but the engraver will
833 not insert tuplets.
834
835 @seealso
836
837 Examples: @inputfileref{input/@/regression,completion@/-heads@/.ly}.
838
839 @noindent
840
841 Program reference: @internalsref{Completion_heads_engraver}.
842
843
844 @node Staff notation
845 @section Staff notation
846
847 This section describes music notation that occurs on staff level,
848 such as key signatures, clefs and time signatures.
849
850 @cindex Staff notation
851
852 @menu
853 * Staff symbol::                
854 * Key signature::               
855 * Clef::                        
856 * Ottava brackets::             
857 * Time signature::              
858 * Partial measures::            
859 * Unmetered music::             
860 * Bar lines::                   
861 * Time administration::         
862 * Controlling formatting of prefatory matter::  
863 @end menu
864
865 @node Staff symbol
866 @subsection Staff symbol
867
868 @cindex adjusting staff symbol
869
870 Notes, dynamic signs, etc., are grouped
871 with a set of horizontal lines, into a staff (plural `staves').  In our
872 system, these lines are drawn using a separate layout object called
873 staff symbol.
874
875
876 @cindex staff lines, setting number of
877 @cindex staff lines, setting thickness of
878 @cindex thickness of staff lines, setting
879 @cindex number of staff lines, setting
880
881 @seealso
882
883 Program reference: @internalsref{StaffSymbol}.
884
885 Examples: @inputfileref{input/@/test,staff@/-lines@/.ly},
886 @inputfileref{input/@/test,staff@/-size@/.ly}.
887
888 @refbugs
889
890 If a staff is ended halfway a piece, the staff symbol may not end
891 exactly on the bar line.
892
893
894 @node Key signature
895 @subsection Key signature
896 @cindex Key signature
897
898 @cindex @code{\key}
899
900 The key signature indicates the tonality in which a piece is played.  It
901 is denoted by a set of alterations (flats or sharps) at the start of the
902 staff.
903
904
905 Setting or changing the key signature is done with the @code{\key}
906 command
907 @example
908 @code{\key} @var{pitch} @var{type}
909 @end example
910
911 @cindex @code{\minor}
912 @cindex @code{\major}
913 @cindex @code{\minor}
914 @cindex @code{\ionian}
915 @cindex @code{\locrian}
916 @cindex @code{\aeolian}
917 @cindex @code{\mixolydian}
918 @cindex @code{\lydian}
919 @cindex @code{\phrygian}
920 @cindex @code{\dorian}
921
922 Here, @var{type} should be @code{\major} or @code{\minor} to get
923 @var{pitch}-major or @var{pitch}-minor, respectively.
924 The standard mode names @code{\ionian},
925 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
926 @code{\phrygian}, and @code{\dorian} are also defined.
927
928 This command sets the context property
929 @internalsref{Staff}.@code{keySignature}.  Non-standard key signatures
930 can be specified by setting this property directly.
931
932 A natural sign is printed to cancel any previous accidentals.  This
933 can be suppressed by setting the @code{Staff.printKeyCancellation}
934 property.
935
936 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
937 {
938   \key d \major
939   a b cis d
940   \key g \minor
941   a bes c d
942   \set Staff.printKeyCancellation = ##f
943   \key d \major
944   a b cis d
945   \key g \minor
946   a bes c d
947 }
948 @end lilypond
949
950 Accidentals and key signatures often confuse new users, because
951 unaltered notes get natural signs depending on the key signature.  For
952 more information, see @ref{More about pitches}.
953
954 @seealso
955
956 Program reference: @internalsref{KeyChangeEvent},
957 @internalsref{KeyCancellation} and @internalsref{KeySignature}.
958
959 @cindex @code{keySignature}
960
961
962 @node Clef
963 @subsection Clef
964 @cindex @code{\clef}
965
966 The clef indicates which lines of the staff correspond to which
967 pitches.
968
969
970 The clef can be set with the @code{\clef} command
971 @lilypond[quote,raggedright,fragment,verbatim]
972 { c''2 \clef alto g'2 }
973 @end lilypond
974
975 Supported clef-names include
976 @c Moved standard clefs to the top /MB
977 @table @code
978 @cindex treble clef
979 @cindex violin clef
980 @item treble, violin, G, G2
981 G clef on 2nd line
982 @item alto, C
983 @cindex alto clef
984  C clef on 3rd line
985 @item tenor
986 @cindex tenor clef
987  C clef on 4th line.
988 @item bass, F
989 @cindex bass clef
990  F clef on 4th line
991 @item french
992 @cindex french clef
993  G clef on 1st line, so-called French violin clef
994 @item soprano
995 @cindex soprano clef
996  C clef on 1st line
997 @item mezzosoprano
998 @cindex mezzosoprano clef
999  C clef on 2nd line
1000 @item baritone
1001 @cindex baritone clef
1002  C clef on 5th line
1003 @item varbaritone
1004 @cindex varbaritone clef
1005  F clef on 3rd line
1006 @item subbass
1007 @cindex subbass clef
1008  F clef on 5th line
1009 @item percussion
1010  percussion clef
1011 @item tab
1012  tablature clef
1013 @end table
1014
1015 By adding @code{_8} or @code{^8} to the clef name, the clef is
1016 transposed one octave down or up, respectively, and @code{_15} and
1017 @code{^15} transposes by two octaves.  The argument @var{clefname}
1018 must be enclosed in quotes when it contains underscores or digits.  For
1019 example,
1020
1021
1022 @cindex choral tenor clef
1023 @lilypond[quote,raggedright,verbatim,fragment,relative=1]
1024 \clef "G_8" c4
1025 @end lilypond
1026
1027 This command is equivalent to setting @code{clefGlyph},
1028 @code{clefPosition} (which controls the Y position of the clef),
1029 @code{middleCPosition} and @code{clefOctavation}.  A clef is printed
1030 when any of these properties are changed.  The following example shows
1031 possibilities when setting properties manually.
1032
1033 @ignore
1034 should to be fixed very quickly  -gp
1035
1036 @lilypond[quote,raggedright,verbatim]
1037 {
1038   \set Staff.clefGlyph = #"clefs.F"
1039   \set Staff.clefPosition = #2
1040   c'4
1041   \set Staff.clefGlyph = #"clefs.G"
1042   c'4
1043   \set Staff.clefGlyph = #"clefs.C"
1044   c'4
1045   \set Staff.clefOctavation = #7
1046   c'4
1047   \set Staff.clefOctavation = #0
1048   \set Staff.clefPosition = #0
1049   c'4
1050   \clef "bass"
1051   c'4
1052   \set Staff.middleCPosition = #4
1053   c'4
1054 }
1055 @end lilypond
1056
1057 @end ignore
1058
1059 @seealso
1060
1061 Program reference: @internalsref{Clef}.
1062
1063
1064
1065 @node Ottava brackets
1066 @subsection Ottava brackets
1067
1068 `Ottava' brackets introduce an extra transposition of an octave for
1069 the staff.  They are created by invoking the function
1070 @code{set-octavation}
1071
1072 @cindex ottava
1073 @cindex 15ma
1074 @cindex octavation
1075
1076 @lilypond[quote,raggedright,verbatim,fragment]
1077 \relative c''' {
1078   a2 b
1079   #(set-octavation 1)
1080   a b
1081   #(set-octavation 0)
1082   a b
1083 }
1084 @end lilypond
1085
1086 The @code{set-octavation} function also takes -1 (for 8va bassa) and 2
1087 (for 15ma) as arguments.  Internally the function sets the properties
1088 @code{ottavation} (e.g., to @code{"8va"}) and
1089 @code{centralCPosition}.  For overriding the text of the bracket, set
1090 @code{ottavation} after invoking @code{set-octavation}, i.e.,
1091
1092 @lilypond[quote,raggedright,verbatim]
1093 {
1094   #(set-octavation 1)
1095   \set Staff.ottavation = #"8"
1096   c'''
1097 }
1098 @end lilypond
1099
1100 @seealso
1101
1102 Program reference: @internalsref{OttavaBracket}.
1103
1104 Examples: @inputfileref{input/@/regression,ottava@/.ly},
1105 @inputfileref{input/@/regression,ottava@/-broken@/.ly}.
1106
1107 @refbugs
1108
1109 @code{set-octavation} will get confused when clef changes happen
1110 during an octavation bracket.
1111
1112
1113
1114
1115 @node Time signature
1116 @subsection Time signature
1117 @cindex Time signature
1118 @cindex meter
1119 @cindex @code{\time}
1120
1121 Time signature indicates the metrum of a piece: a regular pattern of
1122 strong and weak beats.  It is denoted by a fraction at the start of the
1123 staff.
1124
1125
1126 The time signature is set or changed by the @code{\time}
1127 command
1128 @lilypond[quote,raggedright,fragment,verbatim]
1129 \time 2/4 c'2 \time 3/4 c'2.
1130 @end lilypond
1131
1132 The symbol that is printed can be customized with the @code{style}
1133 property.  Setting it to @code{#'()} uses fraction style for 4/4 and
1134 2/2 time,
1135
1136 @lilypond[fragment,quote,raggedright,verbatim]
1137 \time 4/4 c'1
1138 \time 2/2 c'1
1139 \override Staff.TimeSignature #'style = #'()
1140 \time 4/4 c'1
1141 \time 2/2 c'1
1142 @end lilypond
1143
1144
1145
1146 There are many more options for its layout.  See @ref{Ancient time
1147 signatures} for more examples.
1148
1149
1150 This command sets the property @code{timeSignatureFraction},
1151 @code{beatLength} and @code{measureLength} in the @code{Timing}
1152 context, which is normally aliased to @internalsref{Score}.  The
1153 property @code{measureLength} determines where bar lines should be
1154 inserted, and how automatic beams should be generated.  Changing the
1155 value of @code{timeSignatureFraction} also causes the symbol to be
1156 printed.
1157
1158 More options are available through the Scheme function
1159 @code{set-time-signature}.  In combination with the
1160 @internalsref{Measure_grouping_engraver}, it will create
1161 @internalsref{MeasureGrouping} signs.  Such signs ease reading
1162 rhythmically complex modern music.  In the following example, the 9/8
1163 measure is subdivided in 2, 2, 2 and 3.  This is passed to
1164 @code{set-time-signature} as the third argument @code{(2 2 2 3)}
1165
1166 @lilypond[quote,raggedright,verbatim]
1167 \score {
1168   \relative c'' {
1169     #(set-time-signature 9 8 '(2 2 2 3))
1170     g8[ g] d[ d] g[ g] a8[( bes g]) |
1171     #(set-time-signature 5 8 '(3 2))
1172     a4. g4
1173   }
1174   \layout {
1175     \context {
1176       \Staff
1177       \consists "Measure_grouping_engraver"
1178     }
1179   }
1180 }
1181 @end lilypond
1182
1183 @seealso
1184
1185 Program reference: @internalsref{TimeSignature}, and @internalsref{Timing_engraver}.
1186
1187
1188 @refbugs
1189
1190 Automatic beaming does not use the measure grouping specified with
1191 @code{set-time-signature}.
1192
1193 @node Partial measures
1194 @subsection Partial measures
1195 @cindex Partial
1196 @cindex anacrusis
1197 @cindex partial measure
1198 @cindex measure, partial
1199 @cindex shorten measures
1200 @cindex @code{\partial}
1201
1202 Partial measures, for example in upsteps, are entered using the
1203 @code{\partial} command
1204 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1205 \partial 16*5 c16 cis d dis e | a2. c,4 | b2
1206 @end lilypond
1207
1208 The syntax for this command is
1209 @example
1210 \partial @var{duration}
1211 @end example
1212 This is internally translated into
1213 @example
1214 \set Timing.measurePosition = -@var{length of duration}
1215 @end example
1216 @cindex @code{|}
1217 The property @code{measurePosition} contains a rational number
1218 indicating how much of the measure has passed at this point.
1219
1220 @refbugs
1221
1222 This command does not take into account grace notes at the start of
1223 the music.  When a piece starts with graces notes in the pickup, then
1224 the @code{\partial} should follow the grace notes
1225
1226 @lilypond[verbatim,quote,raggedright,relative,fragment]
1227 {
1228   \grace f16
1229   \partial 4
1230   g4
1231   a2 g2
1232 }
1233 @end lilypond
1234
1235
1236 @node Unmetered music
1237 @subsection Unmetered music
1238
1239 @cindex @code{\bar}
1240
1241 Bar lines and bar numbers are calculated automatically.  For unmetered
1242 music (cadenzas, for example), this is not desirable.  By setting
1243 @code{Score.timing} to false, this automatic timing can be switched
1244 off.  Empty bar lines,
1245
1246 @example
1247 \bar ""
1248 @end example
1249
1250 @noindent
1251 indicate where line breaks can occur.
1252
1253 @refcommands
1254
1255 @cindex @code{\cadenzaOn}
1256 @code{\cadenzaOn},
1257 @cindex @code{\cadenzaOff}
1258 @code{\cadenzaOff}.
1259
1260
1261
1262
1263 @node Bar lines
1264 @subsection Bar lines
1265 @cindex Bar lines
1266
1267 @cindex @code{\bar}
1268 @cindex measure lines
1269 @cindex repeat bars
1270
1271
1272 Bar lines delimit measures, but are also used to indicate repeats.
1273 Normally, they are inserted automatically.  Line breaks may only
1274 happen on bar lines.
1275
1276 Special types of bar lines can be forced with the @code{\bar} command
1277 @c
1278 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1279 c4 \bar "|:" c4
1280 @end lilypond
1281
1282 The following bar types are available
1283 @lilypondfile[raggedright,quote]{bar-lines.ly}
1284
1285 For allowing line breaks, there is a special command,
1286 @example
1287 \bar ""
1288 @end example
1289 This will insert an invisible bar line, and allow line breaks at this
1290 point.
1291
1292 In scores with many staves, a @code{\bar} command in one staff is
1293 automatically applied to all staves.  The resulting bar lines are
1294 connected between different staves of a @internalsref{StaffGroup}
1295 @c
1296 @lilypond[quote,raggedright,fragment,verbatim]
1297 <<
1298   \context StaffGroup <<
1299     \new Staff {
1300       e'4 d'
1301       \bar "||"
1302       f' e'
1303     }
1304     \new Staff { \clef bass c4 g e g }
1305   >>
1306   \new Staff { \clef bass c2 c2 }
1307 >>
1308 @end lilypond
1309
1310
1311 The command @code{\bar }@var{bartype} is a short cut for doing
1312 @code{\set Timing.whichBar = }@var{bartype}.  Whenever @code{whichBar}
1313 is set to a string, a bar line of that type is created.
1314
1315 A bar line is created whenever the @code{whichBar} property is set.
1316 At the start of a measure it is set to the contents of
1317 @code{Timing.defaultBarType}.  The contents of @code{repeatCommands} are used
1318 to override default measure bars.
1319
1320 @cindex @code{whichBar}
1321 @cindex @code{repeatCommands}
1322 @cindex @code{defaultBarType}
1323
1324 You are encouraged to use @code{\repeat} for repetitions.  See
1325 @ref{Repeats}.
1326
1327
1328
1329 @seealso
1330
1331 In this manual: @ref{Repeats}, @ref{System start delimiters}.
1332
1333
1334 Program reference: @internalsref{BarLine} (created at
1335 @internalsref{Staff} level), @internalsref{SpanBar} (across staves).
1336
1337 @cindex bar lines at start of system
1338 @cindex start of system
1339
1340
1341
1342 Examples: @inputfileref{input/@/test,bar@/-lines@/.ly},
1343
1344
1345 @node Time administration
1346 @subsection Time administration
1347
1348 Time is administered by the @internalsref{Time_signature_engraver},
1349 which usually lives in the @internalsref{Score} context.
1350 The bookkeeping deals with the following variables
1351
1352 @table @code
1353 @item currentBarNumber
1354 The measure number.
1355
1356 @item measureLength
1357 The length of the measures in the current time signature.  For a 4/4
1358 time this is@tie{}1, and for 6/8 it is 3/4.
1359
1360 @item measurePosition
1361 The point within the measure where we currently are.  This quantity
1362 is reset to@tie{}0 whenever it exceeds @code{measureLength}.  When that
1363 happens, @code{currentBarNumber} is incremented.
1364
1365 @item timing
1366 If set to true, the above variables are updated for every time
1367 step.  When set to false, the engraver stays in the current measure
1368 indefinitely.
1369 @end table
1370
1371 Timing can be changed by setting any of these variables explicitly.
1372 In the next example, the 4/4 time signature is printed, but
1373 @code{measureLength} is set to 5/4.  After a while, the measure is
1374 shortened by 1/8, by setting @code{measurePosition} to 7/8 at 2/4
1375 in the measure, so the next bar line will fall at 2/4 + 3/8.  The
1376 3/8 arises because 5/4 normally has 10/8, but we have manually
1377 set the measure position to be 7/8 and 10/8 - 7/8 = 3/8.
1378
1379 @lilypond[quote,raggedright,verbatim,relative,fragment]
1380 \set Score.measureLength = #(ly:make-moment 5 4)
1381 c1 c4
1382 c1 c4
1383 c4 c4
1384 \set Score.measurePosition = #(ly:make-moment 7 8)
1385 b8 b b
1386 c4 c1
1387 @end lilypond
1388
1389
1390 @node Controlling formatting of prefatory matter
1391 @subsection Controlling formatting of prefatory matter
1392
1393 @c  This section will be moved to somewhere else soon. -gp
1394 This example demonstrates how to place prefatory matter
1395 (such as the clef and key signature) at the end of a line.
1396
1397 @lilypond[quote,verbatim]
1398 \transpose c c' {
1399   \override Staff.Clef
1400     #'break-visibility = #end-of-line-visible
1401   \override Staff.KeySignature
1402     #'break-visibility = #end-of-line-visible
1403   \set Staff.explicitClefVisibility = #end-of-line-visible
1404   \set Staff.explicitKeySignatureVisibility = #end-of-line-visible
1405
1406   % We want the time sig to take space, otherwise there is not
1407   % enough white at the start of the line.
1408
1409   \override Staff.TimeSignature #'transparent = ##t
1410   \set Score.defaultBarType = #"empty"
1411
1412   c1 d e f g a b c
1413   \key d \major
1414   \break
1415
1416   % see above.
1417   \time 4/4
1418
1419   d e fis g a b cis d
1420   \key g \major
1421   \break
1422   \time 4/4
1423 }
1424 @end lilypond
1425
1426
1427 @node Polyphony
1428 @section Polyphony
1429
1430 Polyphony in music refers to having more than one voice occuring in
1431 a piece of music.  Polyphony in LilyPond refers to having more than
1432 one voice on the same staff.
1433
1434 @menu
1435 * Writing polyphonic music::    
1436 @end menu
1437
1438 @node Writing polyphonic music
1439 @subsection Writing polyphonic music
1440 @cindex polyphony
1441
1442 The easiest way to enter fragments with more than one voice on a staff
1443 is to split chords using the separator @code{\\}.  You can use it for
1444 small, short-lived voices or for single chords
1445
1446 @cindex @code{\\}
1447
1448 @lilypond[quote,raggedright,verbatim,fragment]
1449 \context Staff \relative c'' {
1450   c4 << { f d e } \\ { b c2 } >>
1451   c4 << g' \\ b, \\ f' \\ d >>
1452 }
1453 @end lilypond
1454
1455 The separator causes @internalsref{Voice} contexts@footnote{Polyphonic
1456 voices are sometimes called ``layers'' in other notation packages}
1457 @cindex layers
1458 to be instantiated.  They bear the names @code{"1"}, @code{"2"}, etc.  In
1459 each of these contexts, vertical direction of slurs, stems, etc., is set
1460 appropriately.  Specifically,
1461
1462 @example
1463 << \upper \\ \lower >>
1464 @end example
1465
1466 @noindent
1467 is equivalent to
1468
1469 @example
1470 <<
1471   \context Voice = "1" @{ \voiceOne \upper @}
1472   \context Voice = "2" @{ \voiceTwo \lower @}
1473 >>
1474 @end example
1475
1476 @cindex @code{\voiceOne}
1477 @cindex @code{\voiceFour}
1478
1479 This can also be done by instantiating @internalsref{Voice} contexts
1480 by hand, and using @code{\voiceOne}, up to @code{\voiceFour} to assign
1481 a stem directions and horizontal shift for each part
1482 @c
1483
1484 @lilypond[quote,raggedright,verbatim]
1485 \relative c''
1486 \context Staff <<
1487   \new Voice { \voiceOne cis2 b }
1488   \new Voice { \voiceThree b4 ais ~ ais4 gis4 }
1489   \new Voice { \voiceTwo fis4~ fis4 f ~ f } >>
1490 @end lilypond
1491
1492 @noindent
1493 The command @code{\oneVoice} will revert back to the normal setting.
1494 @cindex @code{\oneVoice}
1495
1496 Defining voices (either with the separator @code{\\} or with
1497 @code{\voiceXXX}) will set the direction of stems, slurs, ties,
1498 articulations, text annotations, augmentation dots of dotted
1499 notes, and fingerings.  @code{\voiceOne} makes these objects
1500 point upwards, while @code{\voiceTwo} makes them point down.
1501
1502 Normally, note heads with a different number of dots are not merged, but
1503 when the object property @code{merge-differently-dotted} is set in
1504 the @internalsref{NoteCollision} object, they are merged
1505 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
1506 \context Voice << {
1507   g8 g8
1508   \override Staff.NoteCollision
1509     #'merge-differently-dotted = ##t
1510   g8 g8
1511 } \\ { g8.[ f16] g8.[ f16] } >>
1512 @end lilypond
1513
1514 Similarly, you can merge half note heads with eighth notes, by setting
1515 @code{merge-differently-headed}
1516 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
1517 \context Voice << {
1518   c8 c4.
1519   \override Staff.NoteCollision
1520     #'merge-differently-headed = ##t
1521 c8 c4. } \\ { c2 c2 } >>
1522 @end lilypond
1523
1524 LilyPond also vertically shifts rests that are opposite of a stem,
1525 for example
1526
1527 @lilypond[quote,raggedright,fragment,verbatim]
1528 \context Voice << c''4 \\ r4 >>
1529 @end lilypond
1530
1531
1532 @refcommands
1533
1534
1535
1536 @cindex @code{\oneVoice}
1537 @code{\oneVoice},
1538 @cindex @code{\voiceOne}
1539 @code{\voiceOne},
1540 @cindex @code{\voiceTwo}
1541 @code{\voiceTwo},
1542 @cindex @code{\voiceThree}
1543 @code{\voiceThree},
1544 @cindex @code{\voiceFour}
1545 @code{\voiceFour}.
1546
1547
1548
1549 @cindex @code{\shiftOn}
1550 @code{\shiftOn},
1551 @cindex @code{\shiftOnn}
1552 @code{\shiftOnn},
1553 @cindex @code{\shiftOnnn}
1554 @code{\shiftOnnn},
1555 @cindex @code{\shiftOff}
1556 @code{\shiftOff}: these commands specify in what chords of the current
1557 voice should be shifted.  The outer voices (normally: voice one and
1558 two) have @code{\shiftOff}, while the inner voices (three and four)
1559 have @code{\shiftOn}.  @code{\shiftOnn} and @code{\shiftOnnn} define
1560 further shift levels.
1561
1562
1563 When LilyPond cannot cope, the @code{force-hshift}
1564 property of the @internalsref{NoteColumn} object and pitched rests can
1565 be used to override typesetting decisions.
1566
1567 @lilypond[quote,verbatim,raggedright]
1568 \relative <<
1569 {
1570   <d g>
1571   <d g>
1572 } \\ {
1573   <b f'>
1574   \once \override NoteColumn #'force-hshift = #1.7
1575   <b f'>
1576 } >>
1577 @end lilypond
1578
1579
1580
1581 @seealso
1582
1583 Program reference: the objects responsible for resolving collisions are
1584 @internalsref{NoteCollision} and @internalsref{RestCollision}.
1585
1586 Examples:
1587 @inputfileref{input/@/regression,collision@/-dots@/.ly},
1588 @inputfileref{input/@/regression,collision@/-head-chords@/.ly},
1589 @inputfileref{input/@/regression,collision@/-heads@/.ly},
1590 @inputfileref{input/@/regression,collision@/-mesh@/.ly}, and
1591 @inputfileref{input/@/regression,collisions@/.ly}.
1592
1593
1594 @refbugs
1595
1596
1597 When using @code{merge-differently-headed} with an upstem eighth or a
1598 shorter note, and a downstem half note, the eighth note gets the wrong
1599 offset.
1600
1601 There is no support for clusters where the same note occurs with
1602 different accidentals in the same chord.  In this case, it is
1603 recommended to use enharmonic transcription, or to use special cluster
1604 notation (see @ref{Clusters}).
1605
1606 @node Beaming
1607 @section Beaming
1608
1609 Beams are used to group short notes into chunks that are aligned with
1610 the metrum.  LilyPond normally inserts beams automatically, but if you
1611 wish you may control them manually or changed how beams are automatically
1612 grouped.
1613
1614 @cindex Automatic beams
1615 @menu
1616 * Automatic beams::             
1617 * Manual beams::                
1618 * Setting automatic beam behavior::  
1619 * Beam formatting::             
1620 @end menu
1621
1622 @node Automatic beams
1623 @subsection Automatic beams
1624
1625 LilyPond inserts beams automatically
1626
1627 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1628 \time 2/4 c8 c c c \time 6/8 c c c c8. c16 c8
1629 @end lilypond
1630
1631 When these automatic decisions are not good enough, beaming can be
1632 entered explicitly.  It is also possible to define beaming patterns
1633 that differ from the defaults.
1634
1635 Individual notes may be marked with @code{\noBeam}, to prevent them
1636 from being beamed
1637
1638 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
1639 \time 2/4 c8 c\noBeam c c
1640 @end lilypond
1641
1642
1643 @seealso
1644
1645 Program reference: @internalsref{Beam}.
1646
1647
1648 @node Manual beams
1649 @subsection Manual beams
1650 @cindex beams, manual
1651 @cindex @code{]}
1652 @cindex @code{[}
1653
1654 In some cases it may be necessary to override the automatic beaming
1655 algorithm.  For example, the autobeamer will not put beams over rests
1656 or bar lines.  Such beams are specified manually by marking the begin
1657 and end point with @code{[} and @code{]}
1658
1659 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1660 {
1661   r4 r8[ g' a r8] r8 g[ | a] r8
1662 }
1663 @end lilypond
1664
1665 @cindex @code{stemLeftBeamCount}
1666
1667 Normally, beaming patterns within a beam are determined automatically.
1668 If necessary, the properties @code{stemLeftBeamCount} and
1669 @code{stemRightBeamCount} can be used to override the defaults.  If
1670 either property is set, its value will be used only once, and then it
1671 is erased
1672
1673 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1674 {
1675    f8[ r16
1676       f g a]
1677    f8[ r16
1678    \set stemLeftBeamCount = #1
1679       f g a]
1680 }
1681 @end lilypond
1682 @cindex @code{stemRightBeamCount}
1683
1684
1685 The property @code{subdivideBeams} can be set in order to subdivide
1686 all 16th or shorter beams at beat positions, as defined by the
1687 @code{beatLength} property.
1688
1689
1690 @lilypond[fragment,quote,relative=2,verbatim]
1691 c16[ c c c c c c c]
1692 \set subdivideBeams = ##t
1693 c16[ c c c c c c c]
1694 \set Score.beatLength = #(ly:make-moment 1 8)
1695 c16[ c c c c c c c]
1696 @end lilypond
1697 @cindex @code{subdivideBeams}
1698
1699 Normally, line breaks are forbidden when beams cross bar lines.  This
1700 behavior can be changed by setting @code{allowBeamBreak}.
1701
1702 @cindex @code{allowBeamBreak}
1703 @cindex beams and line breaks
1704
1705 @cindex beams, kneed
1706 @cindex kneed beams
1707 @cindex auto-knee-gap
1708
1709
1710 @seealso
1711
1712 User manual: @ref{Changing context properties on the fly} for the
1713 @code{\set} command
1714
1715
1716 @refbugs
1717
1718 @cindex Frenched staves
1719 Kneed beams are inserted automatically, when a large gap is detected
1720 between the note heads.  This behavior can be tuned through the object.
1721
1722
1723 Automatically kneed cross-staff beams cannot be used together with
1724 hidden staves.  See @ref{Hiding staves}.
1725
1726 Beams do not avoid collisions with symbols around the notes, such as
1727 texts and accidentals.
1728
1729 @c FIXME.
1730
1731
1732 @node Setting automatic beam behavior
1733 @subsection Setting automatic beam behavior
1734
1735 @cindex @code{autoBeamSettings}
1736 @cindex @code{(end * * * *)}
1737 @cindex @code{(begin * * * *)}
1738 @cindex automatic beams, tuning
1739 @cindex tuning automatic beaming
1740
1741 @c [TODO: use \applycontext]
1742
1743 In normal time signatures, automatic beams can start on any note but can
1744 only end in a few positions within the measure: beams can end on a beat,
1745 or at durations specified by the properties in
1746 @code{autoBeamSettings}.  The defaults for @code{autoBeamSettings}
1747 are defined in @file{scm/@/auto@/-beam@/.scm}.
1748
1749 The value of @code{autoBeamSettings} is changed with three functions,
1750 @example
1751 #(override-auto-beam-setting
1752    '(@var{be} @var{p} @var{q} @var{n} @var{m}) @var{a} @var{b}
1753    [@var{context}])
1754 #(score-override-auto-beam-setting
1755    '(@var{be} @var{p} @var{q} @var{n} @var{m}) @var{a} @var{b})
1756 #(revert-auto-beam-setting '(@var{be} @var{p} @var{q} @var{n} @var{m})
1757    [@var{context}])
1758 @end example
1759 Here, @var{be} is the symbol @code{begin} or @code{end}, and
1760 @var{context} is an optional context (default: @code{'Voice}).  It
1761 determines whether the rule applies to begin or end-points.  The
1762 quantity @var{p}/@var{q} refers to the length of the beamed notes (and
1763 `@code{* *}' designates notes of any length), @var{n}/@var{M} refers
1764 to a time signature (wildcards `@code{* *}' may be entered to
1765 designate all time signatures), @var{a}/@var{b} is a duration.  By
1766 default, this command changes settings for the current voice.  It is
1767 also possible to adjust settings at higher contexts, by adding a
1768 @var{context} argument.  @code{score-override-auto-beam-setting} is
1769 equal to @code{override-auto-beam-setting} with the argument
1770 @var{context} set to @code{'Score}.
1771
1772 For example, if automatic beams should end on every quarter note, use
1773 the following
1774 @example
1775 #(override-auto-beam-setting '(end * * * *) 1 4 'Staff)
1776 @end example
1777 Since the duration of a quarter note is 1/4 of a whole note, it is
1778 entered as @code{(ly:make-moment 1 4)}.
1779
1780 The same syntax can be used to specify beam starting points.  In this
1781 example, automatic beams can only end on a dotted quarter note
1782 @example
1783 #(override-auto-beam-setting '(end * * * *) 3 8)
1784 @end example
1785 In 4/4 time signature, this means that automatic beams could end only on
1786 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
1787 3/8, has passed within the measure).
1788
1789 Rules can also be restricted to specific time signatures.  A rule that
1790 should only be applied in @var{N}/@var{M} time signature is formed by
1791 replacing the second asterisks by @var{N} and @var{M}.  For example, a
1792 rule for 6/8 time exclusively looks like
1793 @example
1794 #(override-auto-beam-setting '(begin * * 6 8) @dots{})
1795 @end example
1796
1797 If a rule should be to applied only to certain types of beams, use the
1798 first pair of asterisks.  Beams are classified according to the
1799 shortest note they contain.  For a beam ending rule that only applies
1800 to beams with 32nd notes (and no shorter notes), use @code{(end 1 32 *
1801 *)}.
1802
1803 @cindex automatic beam generation
1804 @cindex autobeam
1805 @cindex @code{autoBeaming}
1806 @cindex lyrics
1807
1808 If beams are used to indicate melismata in songs, then automatic
1809 beaming should be switched off.  This is done by setting
1810 @code{autoBeaming} to @code{#f}.
1811
1812 @refcommands
1813
1814 @cindex @code{\autoBeamOff}
1815 @code{\autoBeamOff},
1816 @cindex @code{\autoBeamOn}
1817 @code{\autoBeamOn}.
1818
1819
1820 @refbugs
1821
1822 If a score ends while an automatic beam has not been ended and is
1823 still accepting notes, this last beam will not be typeset at all.  The
1824 same holds polyphonic voices, entered with @code{<< @dots{} \\ @dots{}
1825 >>}.  If a polyphonic voice ends while an automatic beam is still
1826 accepting notes, it is not typeset.
1827
1828 The rules for ending a beam depend on the shortest note in a beam.
1829 So, while it is possible to have different ending rules for eight
1830 beams and sixteenth beams, a beam that contains both eight and
1831 sixteenth notes will use the rules for the sixteenth beam.
1832
1833 In the example below, the autobeamer makes eighth beams and sixteenth
1834 end at three eighths.  The third beam can only be corrected by
1835 specifying manual beaming.
1836
1837 @lilypond[quote,raggedright,fragment,relative=1]
1838 #(override-auto-beam-setting '(end * * * *) 3 8)
1839 % rather show case where it goes wrong
1840 %\time 12/8 c'8 c c c16 c c c c c c[ c c c] c8[ c] c4
1841 \time 12/8 c'8 c c c16 c c c c c c c c c c8 c c4
1842 @end lilypond
1843 It is not possible to specify beaming parameters that act differently in
1844 different parts of a measure.  This means that it is not possible to use
1845 automatic beaming in irregular meters such as @code{5/8}.
1846
1847 @node Beam formatting
1848 @subsection Beam formatting
1849
1850
1851 When a beam falls in the middle of the staff, the beams point normally
1852 down.  However, this behaviour can be altered with the
1853 @code{neutral-direction} property.
1854
1855
1856 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1857 {
1858   b8[ b]
1859   \override Beam #'neutral-direction = #-1
1860   b[ b]
1861   \override Beam #'neutral-direction = #1
1862   b[ b]
1863 }
1864 @end lilypond
1865
1866
1867 @node Accidentals
1868 @section Accidentals
1869
1870 This section describes how to change the way that accidentals are
1871 inserted automatically before notes.
1872
1873 @menu
1874 * Automatic accidentals::       
1875 @end menu
1876
1877 @node Automatic accidentals
1878 @subsection Automatic accidentals
1879 @cindex Automatic accidentals
1880
1881 Common rules for typesetting accidentals have been placed in a
1882 function.  This function is called as follows
1883
1884 @cindex @code{set-accidental-style}
1885 @example
1886 #(set-accidental-style 'STYLE #('CONTEXT#))
1887 @end example
1888
1889 The function can take two arguments: the name of the accidental style,
1890 and an optional argument that denotes the context that should be
1891 changed.  If no context name is supplied, @code{Staff} is the default,
1892 but you may wish to apply the accidental style to a single @code{Voice}
1893 instead.
1894
1895 The following accidental styles are supported
1896 @table @code
1897 @item default
1898 This is the default typesetting behavior.  It corresponds
1899 to 18th century common practice: Accidentals are
1900 remembered to the end of the measure in which they occur and
1901 only on their own octave.
1902
1903 @item voice
1904 The normal behavior is to remember the accidentals on
1905 Staff-level.  This variable, however, typesets accidentals
1906 individually for each voice.  Apart from that, the rule is similar to
1907 @code{default}.
1908
1909 As a result, accidentals from one voice do not get canceled in other
1910 voices, which is often an unwanted result
1911
1912 @lilypond[quote,raggedright,relative=1,fragment,verbatim]
1913 \context Staff <<
1914   #(set-accidental-style 'voice)
1915   <<
1916     { es g } \\
1917     { c, e }
1918 >> >>
1919 @end lilypond
1920
1921 The @code{voice} option should be used if the voices
1922 are to be read solely by individual musicians.  If the staff is to be
1923 used by one musician (e.g., a conductor) then
1924 @code{modern} or @code{modern-cautionary}
1925 should be used instead.
1926
1927 @item modern
1928 @cindex @code{modern} style accidentals
1929 This rule corresponds to the common practice in the 20th century.  This rule
1930 prints the same accidentals as @code{default}, but temporary
1931 accidentals also are canceled in other octaves.  Furthermore,
1932 in the same octave, they also get canceled in the following
1933 measure
1934
1935 @lilypond[quote,raggedright,fragment,verbatim]
1936 #(set-accidental-style 'modern)
1937 cis' c'' cis'2 | c'' c'
1938 @end lilypond
1939
1940 @item @code{modern-cautionary}
1941 @cindex @code{modern-cautionary}
1942 This rule is similar to @code{modern}, but the ``extra'' accidentals
1943 (the ones not typeset by @code{default}) are typeset as cautionary
1944 accidentals.  They are printed in reduced size or with parentheses
1945 @lilypond[quote,raggedright,fragment,verbatim]
1946 #(set-accidental-style 'modern-cautionary)
1947 cis' c'' cis'2 | c'' c'
1948 @end lilypond
1949
1950 @cindex @code{modern-voice}
1951 @item modern-voice
1952 This rule is used for multivoice accidentals to be read both by musicians
1953 playing one voice and musicians playing all voices.  Accidentals are
1954 typeset for each voice, but they @emph{are} canceled across voices in
1955 the same @internalsref{Staff}.
1956
1957 @cindex @code{modern-voice-cautionary}
1958 @item modern-voice-cautionary
1959 This rule is the same as @code{modern-voice}, but with the extra
1960 accidentals (the ones not typeset by @code{voice}) typeset
1961 as cautionaries.  Even though all accidentals typeset by
1962 @code{default} @emph{are} typeset by this variable,
1963 some of them are typeset as cautionaries.
1964
1965 @item piano
1966 @cindex @code{piano} accidentals
1967 This rule reflects 20th century practice for piano notation.  Very similar to
1968 @code{modern} but accidentals also get canceled
1969 across the staves in the same @internalsref{GrandStaff} or
1970 @internalsref{PianoStaff}.
1971
1972 @item piano-cautionary
1973 @cindex @code{#(set-accidental-style 'piano-cautionary)}
1974 Same as @code{#(set-accidental-style 'piano)} but with the extra
1975 accidentals typeset as cautionaries.
1976
1977 @item no-reset
1978 @cindex @code{no-reset} accidental style
1979 This is the same as @code{default} but with accidentals lasting
1980 ``forever'' and not only until the next measure
1981 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1982 #(set-accidental-style 'no-reset)
1983 c1 cis cis c
1984 @end lilypond
1985
1986 @item forget
1987 This is sort of the opposite of @code{no-reset}: Accidentals
1988 are not remembered at all---and hence all accidentals are
1989 typeset relative to the key signature, regardless of what was
1990 before in the music
1991
1992 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1993 #(set-accidental-style 'forget)
1994 \key d\major c4 c cis cis d d dis dis
1995 @end lilypond
1996 @end table
1997
1998
1999 @seealso
2000
2001 Program reference: @internalsref{Accidental_engraver},
2002 @internalsref{Accidental}, and @internalsref{AccidentalPlacement}.
2003
2004
2005 @refbugs
2006
2007 Simultaneous notes are considered to be entered in sequential
2008 mode.  This means that in a chord the accidentals are typeset as if the
2009 notes in the chord happened once at a time - in the order in which
2010 they appear in the input file.
2011
2012 This is a problem when accidentals in a chord depend on each other,
2013 which does not happen for the default accidental style.  The problem
2014 can be solved by manually inserting @code{!} and @code{?} for the
2015 problematic notes.
2016
2017
2018 @node Expressive marks
2019 @section Expressive marks
2020
2021
2022 @c todo: should change ordering
2023 @c where to put text spanners, metronome marks,
2024 @c fingering?
2025
2026 Expressive marks help musicians to bring more to the music than simple
2027 notes and rhythms.
2028
2029 @menu
2030 * Slurs::                       
2031 * Phrasing slurs::              
2032 * Breath marks::                
2033 * Metronome marks::             
2034 * Text scripts::                
2035 * Text spanners::               
2036 * Analysis brackets::           
2037 * Articulations::               
2038 * Running trills::              
2039 * Fingering instructions::      
2040 * Grace notes::                 
2041 * Glissando::                   
2042 * Dynamics::                    
2043 @end menu
2044
2045 @node Slurs
2046 @subsection Slurs
2047 @cindex Slurs
2048
2049 A slur indicates that notes are to be played bound or @emph{legato}.
2050
2051 They are entered using parentheses
2052 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
2053 f( g a) a8 b( a4 g2 f4)
2054 <c e>2( <b d>2)
2055 @end lilypond
2056
2057 The direction of a slur can be set with the
2058 generic commands
2059
2060 @example
2061 \override Slur #'direction = #UP
2062 \slurUp            % shortcut for the previous line
2063 @end example
2064
2065 @noindent
2066 However, there is a convenient shorthand for forcing slur
2067 directions.  By adding @code{_} or @code{^} before the opening
2068 parentheses, the direction is also set.  For example,
2069
2070 @lilypond[relative=2,raggedright,quote,verbatim,fragment]
2071 c4_( c) c^( c)
2072 @end lilypond
2073
2074 Some composers write two slurs when they want legato chords.  This can
2075 be achieved in LilyPond by setting @code{doubleSlurs},
2076
2077 @lilypond[verbatim,raggedright,relative,fragment,quote]
2078 \set doubleSlurs = ##t
2079 <c e>4 ( <d f> <c e> <d f> )
2080 @end lilypond
2081
2082
2083 @refcommands
2084
2085
2086 @cindex @code{\slurUp}
2087 @code{\slurUp},
2088 @cindex @code{\slurDown}
2089 @code{\slurDown},
2090 @cindex @code{\slurNeutral}
2091 @code{\slurNeutral},
2092 @cindex @code{\slurDotted}
2093 @code{\slurDotted},
2094 @cindex @code{\slurSolid}
2095 @code{\slurSolid}.
2096
2097 @seealso
2098
2099 Program reference: @seeinternals{Slur}, and @internalsref{SlurEvent}.
2100
2101
2102 @node Phrasing slurs
2103 @subsection Phrasing slurs
2104
2105 @cindex phrasing slurs
2106 @cindex phrasing marks
2107
2108 A phrasing slur (or phrasing mark) connects chords and is used to
2109 indicate a musical sentence.  It is written using @code{\(} and @code{\)}
2110 respectively
2111
2112 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2113 \time 6/4 c'\( d( e) f( e) d\)
2114 @end lilypond
2115
2116 Typographically, the phrasing slur behaves almost exactly like a
2117 normal slur.  However, they are treated as different objects.  A
2118 @code{\slurUp} will have no effect on a phrasing slur; instead, use
2119 @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
2120 @code{\phrasingSlurNeutral}.
2121
2122 The commands @code{\slurUp}, @code{\slurDown}, and @code{\slurNeutral}
2123 will only affect normal slurs and not phrasing slurs.
2124
2125 @refcommands
2126
2127 @cindex @code{\phrasingSlurUp}
2128 @code{\phrasingSlurUp},
2129 @cindex @code{\phrasingSlurDown}
2130 @code{\phrasingSlurDown},
2131 @cindex @code{\phrasingSlurNeutral}
2132 @code{\phrasingSlurNeutral}.
2133
2134 @seealso
2135
2136 Program reference: see also @internalsref{PhrasingSlur}, and
2137 @internalsref{PhrasingSlurEvent}.
2138
2139 @refbugs
2140
2141 Putting phrasing slurs over rests leads to spurious warnings.
2142
2143 @node Breath marks
2144 @subsection Breath marks
2145
2146 Breath marks are entered using @code{\breathe}
2147
2148
2149 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2150 c'4 \breathe d4
2151 @end lilypond
2152
2153 The glyph of the breath mark can be tuned by overriding the
2154 @code{text} property of the @code{BreathingSign} layout object with
2155 any markup text.  For example,
2156 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
2157 c'4
2158 \override BreathingSign #'text
2159   = #(make-musicglyph-markup "scripts-rvarcomma")
2160 \breathe
2161 d4
2162 @end lilypond
2163
2164 @seealso
2165
2166 Program reference: @internalsref{BreathingSign},
2167 @internalsref{BreathingSignEvent}.
2168
2169 Examples: @inputfileref{input/@/regression,breathing@/-sign@/.ly}.
2170
2171
2172 @node Metronome marks
2173 @subsection Metronome marks
2174
2175 @cindex Tempo
2176 @cindex beats per minute
2177 @cindex metronome marking
2178
2179 Metronome settings can be entered as follows
2180 @example
2181 \tempo @var{duration} = @var{per-minute}
2182 @end example
2183
2184 In the MIDI output, they are interpreted as a tempo change.  In the
2185 layout output, a metronome marking is printed
2186 @cindex @code{\tempo}
2187 @lilypond[quote,raggedright,verbatim,fragment]
2188 \tempo 8.=120 c''1
2189 @end lilypond
2190
2191 @seealso
2192
2193 Program reference: @internalsref{MetronomeChangeEvent}.
2194
2195
2196 @node Text scripts
2197 @subsection Text scripts
2198 @cindex Text scripts
2199
2200 @cindex text items, non-empty
2201 @cindex non-empty texts
2202
2203 It is possible to place arbitrary strings of text or markup text (see
2204 @ref{Text markup}) above or below notes by using a string
2205 @code{c^"text"}.  By default, these indications do not influence the
2206 note spacing, but by using the command @code{\fatText}, the widths
2207 will be taken into account
2208
2209 @lilypond[quote,fragment,raggedright,verbatim,relative=1]
2210 c4^"longtext" \fatText c4_"longlongtext" c4
2211 @end lilypond
2212
2213 More complex formatting may also be added to a note by using the
2214 markup command,
2215 @lilypond[fragment,raggedright,verbatim,quote]
2216 c'4^\markup { bla \bold bla }
2217 @end lilypond
2218
2219 The @code{\markup} is described in more detail in
2220 @ref{Text markup}.
2221
2222
2223 @refcommands
2224
2225 @cindex @code{\fatText}
2226 @code{\fatText},
2227 @cindex @code{\emptyText}
2228 @code{\emptyText}.
2229
2230 @seealso
2231
2232 In this manual: @ref{Text markup}.
2233
2234 Program reference: @internalsref{TextScriptEvent}, @internalsref{TextScript}.
2235
2236
2237 @node Text spanners
2238 @subsection Text spanners
2239 @cindex Text spanners
2240
2241 Some performance indications, e.g., @i{rallentando} or @i{accelerando},
2242 are written as text and are extended over many measures with dotted
2243 lines.  Such texts are created using text spanners; attach
2244 @code{\startTextSpan} and @code{\stopTextSpan} to the first and last
2245 notes of the spanner.
2246
2247 The string to be printed, as well as the style, is set through object
2248 properties
2249
2250 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2251 c1
2252 \override TextSpanner #'direction = #-1
2253 \override TextSpanner #'edge-text = #'("rall " . "")
2254 c2\startTextSpan b c\stopTextSpan a
2255 @end lilypond
2256
2257
2258 @seealso
2259
2260 Internals @internalsref{TextSpanEvent},
2261 @internalsref{TextSpanner}.
2262
2263 Examples: @inputfileref{input/@/regression,text@/-spanner@/.ly}.
2264
2265
2266 @node Analysis brackets
2267 @subsection Analysis brackets
2268 @cindex brackets
2269 @cindex phrasing brackets
2270 @cindex musicological analysis
2271 @cindex note grouping bracket
2272
2273 Brackets are used in musical analysis to indicate structure in musical
2274 pieces.  LilyPond supports a simple form of nested horizontal
2275 brackets.  To use this, add the @internalsref{Horizontal_bracket_engraver}
2276 to @internalsref{Staff} context.  A bracket is started with
2277 @code{\startGroup} and closed with @code{\stopGroup}
2278
2279 @lilypond[quote,raggedright,verbatim]
2280 \score {
2281   \relative c'' {
2282     c4\startGroup\startGroup
2283     c4\stopGroup
2284     c4\startGroup
2285     c4\stopGroup\stopGroup
2286   }
2287   \layout {
2288     \context {
2289       \Staff \consists "Horizontal_bracket_engraver"
2290 }}}
2291 @end lilypond
2292
2293 @seealso
2294
2295 Program reference: @internalsref{HorizontalBracket},
2296 @internalsref{NoteGroupingEvent}.
2297
2298 Examples: @inputfileref{input/@/regression,note@/-group@/-bracket@/.ly}.
2299
2300
2301 @node Articulations
2302 @subsection Articulations
2303 @cindex Articulations
2304
2305 @cindex articulations
2306 @cindex scripts
2307 @cindex ornaments
2308
2309 A variety of symbols can appear above and below notes to indicate
2310 different characteristics of the performance.  They are added to a note
2311 by adding a dash and the character signifying the
2312 articulation.  They are demonstrated here
2313
2314 @lilypondfile[quote,raggedright]{script-abbreviations.ly}
2315
2316 The meanings of these shorthands can be changed.  See
2317 @file{ly/@/script@/-init@/.ly} for examples.
2318
2319
2320 The script is automatically placed, but the direction can be forced as
2321 well.  Like other pieces of LilyPond code, @code{_} will place them
2322 below the staff, and @code{^} will place them above.
2323
2324
2325 @lilypond[quote,raggedright,fragment,verbatim]
2326 c''4^^ c''4_^
2327 @end lilypond
2328
2329 Other symbols can be added using the syntax
2330 @var{note}@code{\}@var{name}.  Again, they
2331 can be forced up or down using @code{^} and @code{_},
2332 e.g.,
2333
2334 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
2335 c\fermata c^\fermata c_\fermata
2336 @end lilypond
2337
2338
2339
2340 @cindex accent
2341 @cindex marcato
2342 @cindex staccatissimo
2343 @cindex espressivo
2344 @cindex fermata
2345 @cindex stopped
2346 @cindex staccato
2347 @cindex portato
2348 @cindex tenuto
2349 @cindex upbow
2350 @cindex downbow
2351 @cindex foot marks
2352 @cindex organ pedal marks
2353 @cindex turn
2354 @cindex open
2355 @cindex flageolet
2356 @cindex reverseturn
2357 @cindex trill
2358 @cindex prall
2359 @cindex mordent
2360 @cindex prallprall
2361 @cindex prallmordent
2362 @cindex prall, up
2363 @cindex prall, down
2364 @cindex mordent
2365 @cindex thumb marking
2366 @cindex segno
2367 @cindex coda
2368 @cindex varcoda
2369
2370 Here is a chart showing all scripts available,
2371
2372 @lilypondfile[raggedright,quote]{script-chart.ly}
2373
2374
2375 The vertical ordering of scripts is controlled with the
2376 @code{script-priority} property.  The lower this number, the closer it
2377 will be put to the note.  In this example, the
2378 @internalsref{TextScript} (the sharp symbol) first has the lowest
2379 priority, so it is put lowest in the first example.  In the second, the
2380 prall trill (the @internalsref{Script}) has the lowest, so it is on the
2381 inside.  When two objects have the same priority, the order in which
2382 they are entered decides which one comes first.
2383
2384
2385 @lilypond[verbatim,relative=3,raggedright,fragment,quote]
2386 \once \override TextScript #'script-priority = #-100
2387 a4^\prall^\markup { \sharp }
2388
2389 \once \override Script #'script-priority = #-100
2390 a4^\prall^\markup { \sharp }
2391 @end lilypond
2392
2393
2394
2395
2396 @seealso
2397
2398 Program reference: @internalsref{ScriptEvent}, and @internalsref{Script}.
2399
2400 @refbugs
2401
2402 These signs appear in the printed output but have no effect on the
2403 MIDI rendering of the music.
2404
2405
2406
2407 @node Running trills
2408 @subsection Running trills
2409
2410 Long running trills are made with @code{\startTrillSpan} and
2411 @code{\stopTrillSpan},
2412
2413
2414 @lilypond[verbatim,raggedright,relative=2,quote,fragment]
2415 \new Voice {
2416   << { c1 \startTrillSpan }
2417      { s2. \grace { d16[\stopTrillSpan e] } } >>
2418   c4 }
2419 @end lilypond
2420
2421 @refcommands
2422
2423 @code{\startTrillSpan},
2424 @cindex @code{\startTrillSpan}
2425 @code{\stopTrillSpan}.
2426 @cindex @code{\stopTrillSpan}
2427
2428 @seealso
2429
2430 Program reference: @internalsref{TrillSpanner},
2431 @internalsref{TrillSpanEvent}.
2432
2433 @node Fingering instructions
2434 @subsection Fingering instructions
2435
2436 @cindex fingering
2437
2438 Fingering instructions can be entered using
2439 @example
2440 @var{note}-@var{digit}
2441 @end example
2442 For finger changes, use markup texts
2443
2444 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2445 c4-1 c-2 c-3 c-4
2446 c^\markup { \finger "2-3" }
2447 @end lilypond
2448
2449 @cindex finger change
2450 @cindex scripts
2451 @cindex superscript
2452 @cindex subscript
2453
2454 You can use the thumb-script to indicate that a note should be
2455 played with the thumb (e.g., in cello music)
2456 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2457 <a_\thumb a'-3>8 <b_\thumb b'-3>
2458 @end lilypond
2459
2460 Fingerings for chords can also be added to individual notes
2461 of the chord by adding them after the pitches
2462 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2463 < c-1 e-2 g-3 b-5 >4
2464 @end lilypond
2465
2466 @noindent
2467 In this case, setting @code{fingeringOrientations} will put fingerings next
2468 to note heads
2469
2470 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2471 \set fingeringOrientations = #'(left down)
2472 <c-1 es-2 g-4 bes-5 > 4
2473 \set fingeringOrientations = #'(up right down)
2474 <c-1 es-2 g-4 bes-5 > 4
2475 @end lilypond
2476
2477 Using this feature, it is also possible to put fingering instructions
2478 very close to note heads in monophonic music,
2479
2480 @lilypond[verbatim,raggedright,quote,fragment]
2481 \set fingeringOrientations = #'(right)
2482 <es'-2>4
2483 @end lilypond
2484
2485
2486 @seealso
2487
2488 Program reference: @internalsref{FingerEvent}, and @internalsref{Fingering}.
2489
2490 Examples: @inputfileref{input/@/regression,finger@/-chords@/.ly}.
2491
2492
2493
2494
2495 @node Grace notes
2496 @subsection Grace notes
2497
2498
2499 @c should have blurb about accaciatura / appogiatura
2500
2501 @cindex @code{\grace}
2502 @cindex ornaments
2503 @cindex grace notes
2504
2505 Grace notes are ornaments that are written out.  The most common ones
2506 are acciaccatura, which should be played as very short.  It is denoted
2507 by a slurred small note with a slashed stem.  The appoggiatura is a
2508 grace note that takes a fixed fraction of the main note, and is
2509 denoted as a slurred note in small print without a slash.  They
2510 are entered with the commands @code{\acciaccatura} and
2511 @code{\appoggiatura}, as demonstrated in the following example
2512
2513
2514 @cindex appoggiatura
2515 @cindex acciaccatura
2516
2517 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2518 b4 \acciaccatura d8 c4 \appoggiatura e8 d4
2519 \acciaccatura { g16[ f] } e4
2520 @end lilypond
2521
2522 Both are special forms of the @code{\grace} command.  By prefixing this
2523 keyword to a music expression, a new one is formed, which will be
2524 printed in a smaller font and takes up no logical time in a measure.
2525
2526 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2527 c4 \grace c16 c4
2528 \grace { c16[ d16] } c2 c4
2529 @end lilypond
2530
2531 @noindent
2532 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
2533 @code{\grace} command does not start a slur.
2534
2535 Internally, timing for grace notes is done using a second, `grace'
2536 timing.  Every point in time consists of two rational numbers: one
2537 denotes the logical time, one denotes the grace timing.  The above
2538 example is shown here with timing tuples
2539
2540 @lilypond[quote,raggedright]
2541 <<
2542   \relative c''{
2543     c4 \grace c16 c4 \grace {
2544     c16[ d16] } c2 c4
2545   }
2546   \new Lyrics \lyricmode {
2547     \override LyricText #'font-family = #'typewriter
2548
2549     \markup { (0,0) } 4
2550     \grace { \markup {
2551       ( \fraction 1 4 , \fraction -1 16 ) } 16 }
2552     \markup { (\fraction 1 4 , 0 ) } 4
2553     \grace {
2554       \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
2555       \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
2556     }
2557     \markup { ( \fraction 2 4 , 0 ) }
2558   }
2559 >>
2560 @end lilypond
2561
2562
2563 The placement of grace notes is synchronized between different staves.
2564 In the following example, there are two sixteenth grace notes for
2565 every eighth grace note
2566
2567 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2568 << \new Staff { e4 \grace { c16[ d e f] } e4 }
2569    \new Staff { c4 \grace { g8[ b] } c4 } >>
2570 @end lilypond
2571
2572
2573
2574 If you want to end a note with a grace, use the @code{\afterGrace}
2575 command. It takes two arguments: the main note, and the grace notes
2576 following the main note. 
2577
2578 @lilypond[raggedright, verbatim,relative=2,fragment]
2579 c1 \afterGrace d1 { c16[ d] } c4   
2580 @end lilypond
2581
2582 This will put the grace notes after a ``space'' lasting 3/4 of the
2583 length of the main note. The fraction 3/4 can be changed by setting
2584 @code{afterGraceFraction}, ie.
2585
2586 @example
2587 afterGraceFraction = #(cons 7 8) 
2588 @end example
2589
2590 @noindent
2591 will put the grace note at 7/8 of the main note. 
2592
2593
2594 The same effect can be achieved manually by doing
2595
2596
2597 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2598 \context Voice {
2599   << { d1^\trill_( }
2600      { s2 \grace { c16[ d] } } >>
2601   c4)
2602 }
2603 @end lilypond
2604
2605 @noindent
2606 By adjusting the duration of the skip note (here it is a half-note),
2607 the space between the main-note and the grace is adjusted.
2608
2609
2610
2611
2612 A @code{\grace} section will introduce special typesetting settings,
2613 for example, to produce smaller type, and set directions.  Hence, when
2614 introducing layout tweaks, they should be inside the grace section,
2615 for example,
2616 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2617 \new Voice {
2618   \acciaccatura {
2619     \stemDown
2620     f16->
2621     \stemNeutral
2622   }
2623   g4
2624 }
2625 @end lilypond
2626
2627 @noindent
2628 The overrides should also be reverted inside the grace section.
2629
2630 The layout of grace sections can be changed throughout the music using
2631 the function @code{add-grace-property}.  The following example
2632 undefines the Stem direction for this grace, so stems do not always
2633 point up.
2634
2635 @example
2636 \new Staff @{
2637   #(add-grace-property 'Voice 'Stem 'direction '())
2638   @dots{}
2639 @}
2640 @end example
2641
2642 @noindent
2643 Another option is to change the variables @code{startGraceMusic},
2644 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
2645 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
2646 @code{stopAppoggiaturaMusic}.  More information is in the file
2647 @file{ly/@/grace@/-init@/.ly}.
2648
2649
2650 @seealso
2651
2652 Program reference: @internalsref{GraceMusic}.
2653
2654 @refbugs
2655
2656 A score that starts with a @code{\grace} section needs an explicit
2657 @code{\context Voice} declaration, otherwise the main note and the grace
2658 note end up on different staves.
2659
2660 Grace note synchronization can also lead to surprises.  Staff notation,
2661 such as key signatures, bar lines, etc., are also synchronized.  Take
2662 care when you mix staves with grace notes and staves without, for example,
2663
2664 @lilypond[quote,raggedright,relative=2,verbatim,fragment]
2665 << \new Staff { e4 \bar "|:" \grace c16 d4 }
2666    \new Staff { c4 \bar "|:" d4 } >>
2667 @end lilypond
2668
2669 @noindent
2670 This can be remedied by inserting grace skips, for the above example
2671
2672 @example
2673 \new Staff @{ c4 \bar "|:" \grace s16 d4 @}
2674 @end example
2675
2676 Grace sections should only be used within sequential music
2677 expressions.  Nesting or juxtaposing grace sections is not supported,
2678 and might produce crashes or other errors.
2679
2680
2681 @node Glissando
2682 @subsection Glissando
2683 @cindex Glissando
2684
2685 @cindex @code{\glissando}
2686
2687 A glissando is a smooth change in pitch.  It is denoted by a line or a
2688 wavy line between two notes.  It is requested by attaching
2689 @code{\glissando} to a note
2690
2691 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2692 c\glissando c'
2693 @end lilypond
2694
2695 @seealso
2696
2697 Program reference: @internalsref{Glissando}, and @internalsref{GlissandoEvent}.
2698
2699 Example files: @file{input/@/regression/@/glissando@/.ly}.
2700
2701
2702
2703 @refbugs
2704
2705 Printing text over the line (such as @emph{gliss.}) is not supported.
2706
2707
2708 @node Dynamics
2709 @subsection Dynamics
2710 @cindex Dynamics
2711
2712
2713
2714 @cindex @code{\ppp}
2715 @cindex @code{\pp}
2716 @cindex @code{\p}
2717 @cindex @code{\mp}
2718 @cindex @code{\mf}
2719 @cindex @code{\f}
2720 @cindex @code{\ff}
2721 @cindex @code{\fff}
2722 @cindex @code{\ffff}
2723 @cindex @code{\fp}
2724 @cindex @code{\sf}
2725 @cindex @code{\sff}
2726 @cindex @code{\sp}
2727 @cindex @code{\spp}
2728 @cindex @code{\sfz}
2729 @cindex @code{\rfz}
2730
2731
2732 Absolute dynamic marks are specified using a command after a note
2733 @code{c4\ff}.  The available dynamic marks are @code{\ppp},
2734 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
2735 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
2736 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}
2737
2738 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2739 c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
2740 c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
2741 @end lilypond
2742
2743 @cindex @code{\<}
2744 @cindex @code{\>}
2745 @cindex @code{\"!}
2746
2747
2748
2749 A crescendo mark is started with @code{\<} and terminated with
2750 @code{\!}.  A decrescendo is started with @code{\>} and also terminated
2751 with @code{\!}.  Because these marks are bound to notes, you must
2752 use spacer notes if multiple marks are needed during one note
2753
2754 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2755 c\< c\! d\> e\!
2756 << f1 { s4 s4\< s4\! \> s4\! } >>
2757 @end lilypond
2758 This may give rise to very short hairpins.  Use @code{minimum-length}
2759 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
2760 example
2761
2762 @example
2763 \override Staff.Hairpin #'minimum-length = #5
2764 @end example
2765
2766 You can also use a text saying @emph{cresc.} instead of hairpins.  Here
2767 is an example how to do it
2768
2769 @lilypond[quote,raggedright,fragment,relative=2,verbatim]
2770 \setTextCresc
2771 c\< d e f\!
2772 \setHairpinCresc
2773 e\> d c b\!
2774 \setTextDecresc
2775 c\> d e f\!
2776 \setTextDim
2777 e\> d c b\!
2778 @end lilypond
2779
2780 @cindex crescendo
2781 @cindex decrescendo
2782
2783 You can also supply your own texts
2784 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
2785 \set crescendoText = \markup { \italic "cresc. poco" }
2786 \set crescendoSpanner = #'dashed-line
2787 a'2\< a a a\!\mf
2788 @end lilypond
2789
2790 @cindex diminuendo
2791
2792 To create new dynamic marks or text that should be aligned
2793 with dynamics, see @ref{New dynamic marks}.
2794
2795
2796 @refcommands
2797
2798 @cindex @code{\dynamicUp}
2799 @code{\dynamicUp},
2800 @cindex @code{\dynamicDown}
2801 @code{\dynamicDown},
2802 @cindex @code{\dynamicNeutral}
2803 @code{\dynamicNeutral}.
2804
2805 @cindex direction, of dynamics
2806
2807 @seealso
2808
2809 Program reference: @internalsref{CrescendoEvent},
2810 @internalsref{DecrescendoEvent}, and
2811 @internalsref{AbsoluteDynamicEvent}.
2812
2813 Dynamics are @internalsref{DynamicText} and @internalsref{Hairpin}
2814 objects.  Vertical positioning of these symbols is handled by the
2815 @internalsref{DynamicLineSpanner} object.
2816
2817
2818 @node Repeats
2819 @section Repeats
2820
2821 Repetition is a central concept in music, and multiple notations exist
2822 for repetitions.
2823
2824 @menu
2825 * Repeat types::                
2826 * Repeat syntax::               
2827 * Repeats and MIDI::            
2828 * Manual repeat commands::      
2829 * Tremolo repeats::             
2830 * Tremolo subdivisions::        
2831 * Measure repeats::             
2832 @end menu
2833
2834 @node Repeat types
2835 @subsection Repeat types
2836
2837 @cindex repeats
2838 @cindex @code{\repeat}
2839
2840 The following types of repetition are supported
2841
2842 @table @code
2843 @item unfold
2844 Repeated music is fully written (played) out.  This is useful when
2845 entering repetitious music.  This is the only kind of repeat that
2846 is included in MIDI output.
2847
2848 @item volta
2849 Repeats are not written out, but alternative endings (volte) are
2850 printed, left to right with brackets.  This is the standard notation
2851 for repeats with alternatives.  These are not played in MIDI output by default.
2852
2853 @ignore
2854 @item fold
2855 Alternative endings are written stacked.  This has limited use but may be
2856 used to typeset two lines of lyrics in songs with repeats, see
2857 @inputfileref{input,star-spangled-banner@/.ly}.
2858 @end ignore
2859
2860 @c tremolo, beamed
2861 @item tremolo
2862 Make tremolo beams.  These are not played in MIDI output by default.
2863
2864 @item percent
2865 Make beat or measure repeats.  These look like percent signs.  These
2866 are not played in MIDI output by default.
2867
2868 @end table
2869
2870 @node Repeat syntax
2871 @subsection Repeat syntax
2872
2873
2874 LilyPond has one syntactic construct for specifying different types of
2875 repeats.  The syntax is
2876
2877 @example
2878 \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2879 @end example
2880
2881 If you have alternative endings, you may add
2882 @cindex @code{\alternative}
2883 @example
2884 \alternative @{ @var{alternative1}
2885                @var{alternative2}
2886                @var{alternative3} @dots{} @}
2887 @end example
2888 where each @var{alternative} is a music expression.  If you do not
2889 give enough alternatives for all of the repeats, the first alternative
2890 is assumed to be played more than once.
2891
2892 Standard repeats are used like this
2893 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2894 c1
2895 \repeat volta 2 { c4 d e f }
2896 \repeat volta 2 { f e d c }
2897 @end lilypond
2898
2899 With alternative endings
2900 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2901 c1
2902 \repeat volta 2 {c4 d e f}
2903 \alternative { {d2 d} {f f,} }
2904 @end lilypond
2905
2906
2907 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
2908 \context Staff {
2909   \partial 4
2910   \repeat volta 4 { e | c2 d2 | e2 f2 | }
2911   \alternative { { g4 g g } { a | a a a a | b2. } }
2912 }
2913 @end lilypond
2914
2915 It is possible to shorten volta brackets
2916 by setting @code{voltaSpannerDuration}.  In the next example, the
2917 bracket only lasts one measure, which is a duration of 3/4.
2918
2919
2920
2921 @lilypond[verbatim,raggedright,quote]
2922 \relative c''{
2923   \time 3/4
2924   c c c
2925   \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2926   \repeat "volta" 5 { d d d }
2927   \alternative { { e e e f f f }
2928   { g g g } }
2929 }
2930 @end lilypond
2931
2932
2933 @seealso
2934
2935 Examples:
2936
2937 Brackets for the repeat are normally only printed over the topmost
2938 staff.  This can be adjusted by setting the @code{voltaOnThisStaff}
2939 property; see @inputfileref{input/@/regression,volta@/-multi@/-staff@/.ly}.
2940
2941 @c not necessary
2942 @c @inputfileref{input/@/regression,volta@/-chord@/-names@/.ly}.
2943
2944
2945 @refbugs
2946
2947 A nested repeat like
2948
2949 @example
2950 \repeat @dots{}
2951 \repeat @dots{}
2952 \alternative
2953 @end example
2954
2955 @noindent
2956 is ambiguous, since it is is not clear to which @code{\repeat} the
2957 @code{\alternative} belongs.  This ambiguity is resolved by always
2958 having the @code{\alternative} belong to the inner @code{\repeat}.
2959 For clarity, it is advisable to use braces in such situations.
2960 @cindex ambiguity
2961
2962
2963
2964 Timing information is not remembered at the start of an alternative,
2965 so after a repeat timing information must be reset by hand, for
2966 example by setting @code{Score.measurePosition} or entering
2967 @code{\partial}.  Similarly, slurs or ties are also not repeated.
2968
2969
2970
2971
2972 @node Repeats and MIDI
2973 @subsection Repeats and MIDI
2974
2975 @cindex expanding repeats
2976
2977 With a little bit of tweaking, all types of repeats can be present
2978 in the MIDI output.  This is achieved by applying the
2979 @code{\unfoldrepeats} music function.  This functions changes all
2980 repeats to unfold repeats.
2981
2982 @lilypond[quote,verbatim,fragment,linewidth=8.0\cm]
2983 \unfoldrepeats {
2984   \repeat tremolo 8 {c'32 e' }
2985   \repeat percent 2 { c''8 d'' }
2986   \repeat volta 2 {c'4 d' e' f'}
2987   \alternative {
2988     { g' a' a' g' }
2989     {f' e' d' c' }
2990   }
2991 }
2992 \bar "|."
2993 @end lilypond
2994
2995 When creating a score file using @code{\unfoldrepeats} for midi, then
2996 it is necessary to make two @code{\score} blocks.  One for MIDI (with
2997 unfolded repeats) and one for notation (with volta, tremolo, and
2998 percent repeats).  For example,
2999
3000 @example
3001 \score @{
3002   @var{..music..}
3003   \layout @{ .. @}
3004 @}
3005 \score @{
3006   \unfoldrepeats @var{..music..}
3007   \midi @{ .. @}
3008 @}
3009 @end example
3010
3011 @node Manual repeat commands
3012 @subsection Manual repeat commands
3013
3014 @cindex @code{repeatCommands}
3015
3016 The property @code{repeatCommands} can be used to control the layout of
3017 repeats.  Its value is a Scheme list of repeat commands.
3018
3019 @table @asis
3020 @item @code{start-repeat}
3021 Print a @code{|:} bar line.
3022
3023 @item @code{end-repeat}
3024 Print a @code{:|} bar line.
3025
3026 @item @code{(volta @var{text})}
3027 Print a volta bracket saying @var{text}: The text can be specified as
3028 a text string or as a markup text, see @ref{Text markup}.  Do not
3029 forget to change the font, as the default number font does not contain
3030 alphabetic characters;
3031
3032 @item @code{(volta #f)}
3033 Stop a running volta bracket.
3034 @end table
3035
3036 @lilypond[quote,raggedright,verbatim,fragment,relative=2]
3037 c4
3038   \set Score.repeatCommands = #'((volta "93") end-repeat)
3039 c4 c4
3040   \set Score.repeatCommands = #'((volta #f))
3041 c4 c4
3042 @end lilypond
3043
3044
3045
3046 @seealso
3047
3048 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
3049 @internalsref{VoltaRepeatedMusic},
3050 @internalsref{UnfoldedRepeatedMusic}, and
3051 @internalsref{FoldedRepeatedMusic}.
3052
3053 @node Tremolo repeats
3054 @subsection Tremolo repeats
3055 @cindex tremolo beams
3056
3057 To place tremolo marks between notes, use @code{\repeat} with tremolo
3058 style
3059 @lilypond[quote,verbatim,raggedright]
3060 \new Voice \relative c' {
3061   \repeat "tremolo" 8 { c16 d16 }
3062   \repeat "tremolo" 4 { c16 d16 }
3063   \repeat "tremolo" 2 { c16 d16 }
3064 }
3065 @end lilypond
3066
3067 Tremolo marks can also be put on a single note.  In this case, the
3068 note should not be surrounded by braces.
3069 @lilypond[quote,verbatim,raggedright]
3070 \repeat "tremolo" 4 c'16
3071 @end lilypond
3072
3073 Similar output is obtained using the tremolo subdivision, described in
3074 @ref{Tremolo subdivisions}.
3075
3076 @seealso
3077
3078 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
3079
3080 Program reference: tremolo beams are @internalsref{Beam} objects.  Single stem
3081 tremolos are @internalsref{StemTremolo} objects.  The music expression is
3082 @internalsref{TremoloEvent}.
3083
3084 Example files: @inputfileref{input/@/regression,chord@/-tremolo@/.ly},
3085 @inputfileref{input/@/regression,stem@/-tremolo@/.ly}.
3086
3087 @node Tremolo subdivisions
3088 @subsection Tremolo subdivisions
3089 @cindex tremolo marks
3090 @cindex @code{tremoloFlags}
3091
3092 Tremolo marks can be printed on a single note by adding
3093 `@code{:}[@var{number}]' after the note.  The number indicates the
3094 duration of the subdivision, and it must be at least 8.  A
3095 @var{length} value of 8 gives one line across the note stem.  If the
3096 length is omitted, the last value (stored in @code{tremoloFlags}) is
3097 used
3098
3099 @lilypond[quote,raggedright,verbatim,fragment]
3100 c'2:8 c':32 | c': c': |
3101 @end lilypond
3102
3103 @c [TODO: stok is te kort bij 32en]
3104 @c   somebody want to translate that into English?
3105 @c   `Stem is too short for 32nds' (wl)
3106
3107 @refbugs
3108
3109 Tremolos entered in this way do not carry over into the MIDI output.
3110
3111 @seealso
3112
3113 In this manual: @ref{Tremolo repeats}.
3114
3115 Elsewhere: @internalsref{StemTremolo}, @internalsref{TremoloEvent}.
3116
3117 @node Measure repeats
3118 @subsection Measure repeats
3119
3120 @cindex percent repeats
3121 @cindex measure repeats
3122
3123 In the @code{percent} style, a note pattern can be repeated.  It is
3124 printed once, and then the pattern is replaced with a special sign.
3125 Patterns of one and two measures are replaced by percent-like signs,
3126 patterns that divide the measure length are replaced by slashes
3127
3128 @lilypond[quote,verbatim,raggedright]
3129 \new Voice \relative c' {
3130   \repeat "percent" 4 { c4 }
3131   \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
3132 }
3133 @end lilypond
3134
3135 @seealso
3136
3137 Program reference: @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
3138 @internalsref{PercentRepeatedMusic}, and
3139 @internalsref{DoublePercentRepeat}.
3140
3141
3142
3143 @node Rhythmic music
3144 @section Rhythmic music
3145
3146 Rhythmic music is primarily used for percussion and drum notation, but it can
3147 also be used to show the rhythms of melodies.
3148
3149 @menu
3150 * Showing melody rhythms::      
3151 * Entering percussion::         
3152 * Percussion staves::           
3153 @end menu
3154
3155
3156 @node Showing melody rhythms
3157 @subsection Showing melody rhythms
3158
3159 Sometimes you might want to show only the rhythm of a melody.  This
3160 can be done with the rhythmic staff.  All pitches of notes on such a
3161 staff are squashed, and the staff itself has a single line
3162
3163 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3164 \context RhythmicStaff {
3165   \time 4/4
3166   c4 e8 f g2 | r4 g r2 | g1:32 | r1 |
3167 }
3168 @end lilypond
3169
3170 @seealso
3171
3172 Program reference: @internalsref{RhythmicStaff}.
3173
3174 Examples: @inputfileref{input/@/regression,rhythmic@/-staff@/.ly}.
3175
3176
3177 @node Entering percussion
3178 @subsection Entering percussion
3179
3180 @cindex percussion
3181 @cindex drums
3182
3183
3184 Percussion notes may be entered in @code{\drummode} mode, which is
3185 similar to the standard mode for entering notes.  Each piece of
3186 percussion has a full name and an abbreviated name, and both can be used
3187 in input files
3188
3189 @lilypond[quote,raggedright,verbatim]
3190 \drums {
3191   hihat hh bassdrum bd
3192 }
3193 @end lilypond
3194
3195 The complete list of drum names is in the init file
3196 @file{ly/@/drumpitch@/-init@/.ly}.
3197 @c TODO: properly document this.
3198
3199 @seealso
3200
3201 Program reference: @internalsref{DrumNoteEvent}.
3202
3203 @node Percussion staves
3204 @subsection Percussion staves
3205 @cindex percussion
3206 @cindex drums
3207
3208 A percussion part for more than one instrument typically uses a
3209 multiline staff where each position in the staff refers to one piece
3210 of percussion.
3211
3212
3213 To typeset the music, the notes must be interpreted in a
3214 @internalsref{DrumStaff} and @internalsref{DrumVoice} contexts
3215
3216 @lilypond[quote,raggedright,verbatim]
3217 up = \drummode { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
3218 down = \drummode { bassdrum4 snare8 bd r bd sn4 }
3219   \new DrumStaff <<
3220     \new DrumVoice { \voiceOne \up }
3221     \new DrumVoice { \voiceTwo \down }
3222   >>
3223 @end lilypond
3224
3225 The above example shows verbose polyphonic notation.  The short
3226 polyphonic notation, described in @ref{Polyphony}, can also be used if
3227 the @internalsref{DrumVoices} are instantiated by hand first.  For example,
3228
3229 @lilypond[quote,raggedright,fragment,verbatim]
3230 \new DrumStaff <<
3231   \context DrumVoice = "1" { s1 *2 }
3232   \context DrumVoice = "2" { s1 *2 }
3233   \drummode {
3234     bd4 sn4 bd4 sn4
3235     <<
3236       { \repeat unfold 16 hh16 }
3237       \\
3238       { bd4 sn4 bd4 sn4 }
3239     >>
3240   }
3241 >>
3242 @end lilypond
3243
3244
3245 There are also other layout possibilities.  To use these, set the
3246 property @code{drumStyleTable} in context @internalsref{DrumVoice}.
3247 The following variables have been predefined
3248
3249 @table @code
3250 @item drums-style
3251 This is the default.  It typesets a typical drum kit on a five-line staff
3252
3253 @lilypond[quote,linewidth=10.0\cm]
3254 nam = \lyricmode {
3255   cymc cyms cymr hh hhc hho hhho hhp
3256   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl }
3257 mus = \drummode {
3258   cymc cyms cymr hh hhc hho hhho hhp \break
3259   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
3260 \score {
3261   << \new DrumStaff \with {
3262        \remove Bar_engraver
3263        \remove Time_signature_engraver
3264        \override Stem #'transparent = ##t
3265        \override Stem #'Y-extent-callback = ##f
3266        minimumVerticalExtent = #'(-4.0 . 5.0)
3267      } \mus
3268      \context Lyrics \nam
3269   >>
3270   \layout {
3271     \context {
3272       \Score
3273       \override LyricText #'font-family = #'typewriter
3274       \override BarNumber #'transparent =##T
3275     }
3276   }
3277 }
3278 @end lilypond
3279
3280 The drum scheme supports six different toms.  When there are fewer toms,
3281 simply select the toms that produce the desired result, i.e., to get toms
3282 on the three middle lines you use @code{tommh}, @code{tomml}, and
3283 @code{tomfh}.
3284
3285 @item timbales-style
3286 This typesets timbales on a two line staff
3287
3288 @lilypond[quote,raggedright]
3289 nam = \lyricmode { timh ssh timl ssl cb }
3290 mus = \drummode { timh ssh timl ssl cb s16 }
3291
3292 <<
3293   \context DrumStaff \with {
3294     \remove Bar_engraver
3295     \remove Time_signature_engraver
3296     \override Stem #'transparent = ##t
3297     \override Stem #'Y-extent-callback = ##f
3298     \override StaffSymbol #'line-count = #2
3299     \override StaffSymbol #'staff-space = #2
3300     minimumVerticalExtent = #'(-3.0 . 4.0)
3301     drumStyleTable = #timbales-style
3302   } \mus
3303   \context Lyrics {
3304     \override LyricText #'font-family = #'typewriter
3305     \nam
3306   }
3307 >>
3308 @end lilypond
3309
3310 @item congas-style
3311 This typesets congas on a two line staff
3312
3313 @lilypond[quote,raggedright]
3314 nam = \lyricmode { cgh cgho cghm ssh cgl cglo cglm ssl }
3315 mus = \drummode { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
3316
3317 <<
3318   \context DrumStaff \with {
3319     \remove Bar_engraver
3320     \remove Time_signature_engraver
3321     drumStyleTable = #congas-style
3322     \override StaffSymbol #'line-count = #2
3323
3324     %% this sucks; it will lengthen stems.
3325     \override StaffSymbol #'staff-space = #2
3326     \override Stem #'transparent = ##t
3327     \override Stem #'Y-extent-callback = ##f
3328   } \mus
3329   \context Lyrics {
3330     \override LyricText #'font-family = #'typewriter
3331     \nam
3332   }
3333 >>
3334 @end lilypond
3335
3336 @item bongos-style
3337 This typesets bongos on a two line staff
3338
3339 @lilypond[quote,raggedright]
3340 nam = \lyricmode { boh boho bohm ssh bol bolo bolm ssl }
3341 mus = \drummode { boh boho bohm ssh bol bolo bolm ssl s16 }
3342
3343 <<
3344   \context DrumStaff\with {
3345     \remove Bar_engraver
3346     \remove Time_signature_engraver
3347     \override StaffSymbol #'line-count = #2
3348     drumStyleTable = #bongos-style
3349
3350     %% this sucks; it will lengthen stems.
3351     \override StaffSymbol #'staff-space = #2
3352     \override Stem #'transparent = ##t
3353     \override Stem #'Y-extent-callback = ##f
3354   } \mus
3355   \context Lyrics {
3356     \override LyricText #'font-family = #'typewriter
3357     \nam
3358   }
3359 >>
3360 @end lilypond
3361
3362 @item percussion-style
3363 To typeset all kinds of simple percussion on one line staves.
3364
3365 @lilypond[quote,raggedright]
3366 nam = \lyricmode { tri trio trim gui guis guil cb cl tamb cab mar hc }
3367 mus = \drummode { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
3368
3369 <<
3370   \context DrumStaff\with{
3371     \remove Bar_engraver
3372     drumStyleTable = #percussion-style
3373     \override StaffSymbol #'line-count = #1
3374     \remove Time_signature_engraver
3375     \override Stem #'transparent = ##t
3376     \override Stem #'Y-extent-callback = ##f
3377   } \mus
3378   \context Lyrics {
3379     \override LyricText #'font-family = #'typewriter
3380     \nam
3381   }
3382 >>
3383 @end lilypond
3384 @end table
3385
3386 If you do not like any of the predefined lists you can define your own
3387 list at the top of your file
3388
3389 @lilypond[quote,raggedright,verbatim]
3390 #(define mydrums '(
3391          (bassdrum     default   #f         -1)
3392          (snare        default   #f         0)
3393          (hihat        cross     #f         1)
3394          (pedalhihat   xcircle   "stopped"  2)
3395          (lowtom       diamond   #f         3)))
3396 up = \drummode { hh8 hh hh hh hhp4 hhp }
3397 down = \drummode { bd4 sn bd toml8 toml }
3398
3399 \new DrumStaff <<
3400   \set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)
3401   \new DrumVoice { \voiceOne \up }
3402   \new DrumVoice { \voiceTwo \down }
3403 >>
3404 @end lilypond
3405
3406
3407 @seealso
3408
3409 Init files: @file{ly/@/drumpitch@/-init@/.ly}.
3410
3411 Program reference: @internalsref{DrumStaff}, @internalsref{DrumVoice}.
3412
3413 @refbugs
3414
3415 Because general MIDI does not contain rim shots, the sidestick is used
3416 for this purpose instead.
3417
3418 @node Piano music
3419 @section Piano music
3420
3421 Piano staves are two normal staves coupled with a brace.  The staves
3422 are largely independent, but sometimes voices can cross between the
3423 two staves.  The same notation is also used for harps and other key
3424 @c Is this `harp' or `harpsichord'?
3425 instruments.  The @internalsref{PianoStaff} is especially built to
3426 handle this cross-staffing behavior.  In this section we discuss the
3427 @internalsref{PianoStaff} and some other pianistic peculiarities.
3428
3429
3430 @menu
3431 * Automatic staff changes::     
3432 * Manual staff switches::       
3433 * Pedals::                      
3434 * Arpeggio::                    
3435 * Staff switch lines::          
3436 * Cross staff stems::           
3437 @end menu
3438
3439 @refbugs
3440
3441 Dynamics are not centered, but workarounds do exist.  See the
3442 ``piano centered dynamics'' template in @ref{Piano templates}.
3443
3444 @cindex cross staff stem
3445 @cindex stem, cross staff
3446 @cindex distance between staves in piano music
3447
3448 The distance between the two staves is the same for all systems in the
3449 score.  It is possible to override this per system, but it does require
3450 an arcane command incantation.  See
3451 @inputfileref{input/@/test,piano@/-staff@/-distance@/.ly}.
3452
3453
3454 @node Automatic staff changes
3455 @subsection Automatic staff changes
3456 @cindex Automatic staff changes
3457
3458 Voices can be made to switch automatically between the top and the bottom
3459 staff.  The syntax for this is
3460
3461 @quotation
3462 @example
3463 \autochange @dots{}@var{music}@dots{}
3464 @end example
3465 @end quotation
3466
3467 @noindent
3468 This will create two staves inside the current PianoStaff, called
3469 @code{up} and @code{down}.  The lower staff will be in bass clef by
3470 default.
3471
3472 A @code{\relative} section that is outside of @code{\autochange} has
3473 no effect on the pitches of @var{music}, so, if necessary, put
3474 @code{\relative} inside @code{\autochange} like
3475
3476 @quotation
3477 @example
3478 \autochange \relative @dots{} @dots{}
3479 @end example
3480 @end quotation
3481
3482
3483 The autochanger switches on basis of the pitch (middle C is the turning
3484 point), and it looks ahead skipping over rests to switch in
3485 advance.  Here is a practical example
3486
3487 @lilypond[quote,verbatim,raggedright]
3488 \context PianoStaff
3489   \autochange \relative c'
3490   {
3491     g4 a b c d r4 a g
3492   }
3493 @end lilypond
3494
3495
3496 @seealso
3497
3498 In this manual: @ref{Manual staff switches}.
3499
3500 Program reference: @internalsref{AutoChangeMusic}.
3501
3502
3503
3504 @refbugs
3505
3506 The staff switches may not end up in optimal places.  For high
3507 quality output, staff switches should be specified manually.
3508
3509
3510 @code{\autochange} cannot be inside @code{\times}.
3511
3512 Internally, the @code{\partcombine} interprets both arguments as
3513 @code{Voice}s named @code{one} and @code{two}, and then decides when
3514 the parts can be combined.  Consequently, if the arguments switch to
3515 differently named @internalsref{Voice} contexts, the events in those
3516 will be ignored.
3517
3518
3519 @node Manual staff switches
3520 @subsection Manual staff switches
3521
3522 @cindex manual staff switches
3523 @cindex staff switch, manual
3524
3525 Voices can be switched between staves manually, using the command
3526 @example
3527 \change Staff = @var{staffname} @var{music}
3528 @end example
3529
3530 @noindent
3531 The string @var{staffname} is the name of the staff.  It switches the
3532 current voice from its current staff to the Staff called
3533 @var{staffname}.  Typically @var{staffname} is @code{"up"} or
3534 @code{"down"}.  The @context{Staff} referred to must already exist, so
3535 usually the setup for a score will start with a setup of the staves,
3536
3537 @example
3538 <<
3539   \context Staff = up @{
3540     \skip 1 * 10  % @emph{keep staff alive}
3541     @}
3542   \context Staff = down @{
3543     \skip 1 * 10  % @emph{idem}
3544     @}
3545 >>
3546 @end example
3547
3548
3549 and the @context{Voice} is inserted afterwards
3550
3551 @example
3552 \context Staff = down
3553   \new Voice @{ @dots{} \change Staff = up @dots{} @}
3554 @end example
3555
3556
3557 @node Pedals
3558 @subsection Pedals
3559 @cindex Pedals
3560
3561 Pianos have pedals that alter the way sound is produced.  Generally, a
3562 piano has three pedals, sustain, una corda, and sostenuto.
3563
3564
3565 Piano pedal instruction can be expressed by attaching
3566 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
3567 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
3568 note or chord
3569
3570 @lilypond[quote,raggedright,fragment,verbatim]
3571 c'4\sustainDown c'4\sustainUp
3572 @end lilypond
3573
3574 What is printed can be modified by setting @code{pedal@var{X}Strings},
3575 where @var{X} is one of the pedal types: @code{Sustain},
3576 @code{Sostenuto} or @code{UnaCorda}.  Refer to
3577 @internalsref{SustainPedal} in the program reference for more
3578 information.
3579
3580 Pedals can also be indicated by a sequence of brackets, by setting the
3581 @code{pedalSustainStyle} property to bracket objects
3582
3583 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3584 \set Staff.pedalSustainStyle = #'bracket
3585 c\sustainDown d e
3586 b\sustainUp\sustainDown
3587 b g \sustainUp a \sustainDown \bar "|."
3588 @end lilypond
3589
3590 A third style of pedal notation is a mixture of text and brackets,
3591 obtained by setting the @code{pedalSustainStyle} property to
3592 @code{mixed}
3593
3594 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3595 \set Staff.pedalSustainStyle = #'mixed
3596 c\sustainDown d e
3597 b\sustainUp\sustainDown
3598 b g \sustainUp a \sustainDown \bar "|."
3599 @end lilypond
3600
3601 The default `*Ped.' style for sustain and damper pedals corresponds to
3602 style @code{#'text}.  The sostenuto pedal uses @code{mixed} style by
3603 default.
3604
3605 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3606 c\sostenutoDown d e c, f g a\sostenutoUp
3607 @end lilypond
3608
3609 For fine-tuning the appearance of a pedal bracket, the properties
3610 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
3611 @code{PianoPedalBracket} objects (see
3612 @internalsref{PianoPedalBracket} in the Program reference) can be
3613 modified.  For example, the bracket may be extended to the right edge
3614 of the note head
3615
3616 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
3617 \override Staff.PianoPedalBracket #'shorten-pair = #'(0 . -1.0)
3618 c\sostenutoDown d e c, f g a\sostenutoUp
3619 @end lilypond
3620
3621 @node Arpeggio
3622 @subsection Arpeggio
3623 @cindex Arpeggio
3624
3625 @cindex broken arpeggio
3626 @cindex @code{\arpeggio}
3627
3628 You can specify an arpeggio sign on a chord by attaching an
3629 @code{\arpeggio} to a chord
3630
3631
3632 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3633 <c e g c>\arpeggio
3634 @end lilypond
3635
3636 When an arpeggio crosses staves, you attach an arpeggio to the chords
3637 in both staves, and set
3638 @internalsref{PianoStaff}.@code{connectArpeggios}
3639
3640 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3641 \context PianoStaff <<
3642   \set PianoStaff.connectArpeggios = ##t
3643   \new Staff { <c' e g c>\arpeggio }
3644   \new Staff { \clef bass <c,, e g>\arpeggio }
3645 >>
3646 @end lilypond
3647
3648 The direction of the arpeggio is sometimes denoted by adding an
3649 arrowhead to the wiggly line
3650
3651 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3652 \context Voice {
3653   \arpeggioUp
3654   <c e g c>\arpeggio
3655   \arpeggioDown
3656   <c e g c>\arpeggio
3657 }
3658 @end lilypond
3659
3660 A square bracket on the left indicates that the player should not
3661 arpeggiate the chord
3662
3663 @c todo: ugh, lousy typography.  Look for real example. --hwn
3664
3665 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3666 \arpeggioBracket
3667 <c' e g c>\arpeggio
3668 @end lilypond
3669
3670 @refcommands
3671
3672 @cindex @code{\arpeggio}
3673 @code{\arpeggio},
3674 @cindex @code{\arpeggioUp}
3675 @code{\arpeggioUp},
3676 @cindex @code{\arpeggioDown}
3677 @code{\arpeggioDown},
3678 @cindex @code{\arpeggioNeutral}
3679 @code{\arpeggioNeutral},
3680 @cindex @code{\arpeggioBracket}
3681 @code{\arpeggioBracket}.
3682
3683 @seealso
3684
3685 Program reference: @internalsref{ArpeggioEvent},
3686 @internalsref{Arpeggio}.
3687
3688 @refbugs
3689
3690 It is not possible to mix connected arpeggios and unconnected
3691 arpeggios in one @internalsref{PianoStaff} at the same point in time.
3692
3693 @node Staff switch lines
3694 @subsection Staff switch lines
3695
3696
3697 @cindex follow voice
3698 @cindex staff switching
3699 @cindex cross staff
3700
3701 @cindex @code{followVoice}
3702
3703 Whenever a voice switches to another staff, a line connecting the notes
3704 can be printed automatically.  This is switched on by setting
3705 @code{PianoStaff.followVoice} to true
3706
3707 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
3708 \context PianoStaff <<
3709   \set PianoStaff.followVoice = ##t
3710   \context Staff \context Voice {
3711     c1
3712     \change Staff=two
3713     b2 a
3714   }
3715  \context Staff=two { \clef bass \skip 1*2 }
3716 >>
3717 @end lilypond
3718
3719 @seealso
3720
3721 Program reference: @internalsref{VoiceFollower}.
3722
3723 @refcommands
3724
3725 @cindex @code{\showStaffSwitch}
3726 @code{\showStaffSwitch},
3727 @cindex @code{\hideStaffSwitch}
3728 @code{\hideStaffSwitch}.
3729
3730
3731 @node Cross staff stems
3732 @subsection Cross staff stems
3733
3734 Chords that cross staves may be produced by increasing the length
3735 of the stem in the lower staff, so it reaches the stem in the upper
3736 staff, or vice versa.
3737
3738 @lilypond[raggedright,verbatim,quote]
3739 stemExtend = \once \override Stem #'length = #22
3740 noFlag = \once \override Stem #'flag-style = #'no-flag
3741 \context PianoStaff <<
3742   \new Staff {
3743     \stemDown \stemExtend
3744     f'4
3745     \stemExtend \noFlag
3746     f'8
3747   }
3748   \new Staff {
3749     \clef bass
3750     a4 a8
3751   }
3752 >>
3753 @end lilypond
3754
3755
3756 @node Vocal music
3757 @section Vocal music
3758
3759 There are three different issues when printing vocal music
3760
3761 @itemize @bullet
3762 @item
3763 Song texts must be entered as text, not notes.  For example, the
3764 input@tie{}@code{d} should be interpreted as a one letter syllable, not the
3765 note@tie{}D.
3766
3767 @item
3768 Song texts must be printed as text, not as notes.
3769
3770 @item
3771 Song texts must be aligned with the notes of their melody.
3772 @end itemize
3773
3774 The simplest solution for printing music uses the @code{\addlyrics}
3775 function to solve all these problems at once.  However, these
3776 three functions can be controlled separately, which is necessary
3777 for complex vocal music.
3778
3779
3780 @menu
3781 * Setting simple songs::        
3782 * Entering lyrics::             
3783 * Hyphens and extenders::       
3784 * The Lyrics context::          
3785 * Flexibility in alignment::    
3786 * More stanzas::                
3787 * Ambitus::                     
3788 * Other vocal issues::          
3789 @end menu
3790
3791 @node Setting simple songs
3792 @subsection Setting simple songs
3793
3794 The easiest way to add lyrics to a melody is to append
3795 @cindex \addlyrics
3796 @example
3797 \addlyrics @{ @var{the lyrics} @}
3798 @end example
3799
3800 @noindent
3801 to a melody.  Here is an example,
3802
3803 @lilypond[raggedright,verbatim,fragment,quote]
3804 \time 3/4
3805 \relative { c2 e4 g2. }
3806 \addlyrics { play the game }
3807 @end lilypond
3808
3809 More stanzas can be added by adding more
3810 @code{\addlyrics} sections
3811
3812 @lilypond[raggedright,verbatim,fragment,quote]
3813 \time 3/4
3814 \relative { c2 e4 g2. }
3815 \addlyrics { play the game }
3816 \addlyrics { speel het spel }
3817 \addlyrics { joue le jeu }
3818 @end lilypond
3819
3820 @c TODO - this isn't such a great place for this note, but I can't
3821 @c  find a better place without rearranging a lot of lyric stuff.
3822 @c  It's yet another thing to look at post-3.0.
3823
3824 The @code{\addlyrics} command is actually just a convienient way
3825 to write a more complicated LilyPond structure that sets up the
3826 lyrics.  You should use @code{\addlyrics} unless you need to do
3827 fancy things, in which case you should investigate
3828 @code{\lyricsto} or @code{\lyricmode}.
3829
3830 @example
3831 @{ MUSIC @}
3832 \addlyrics @{ LYRICS @}
3833 @end example
3834
3835 @noindent
3836 is the same as
3837
3838 @example
3839 \context Voice = blah @{ music @}
3840 \lyricsto "blah" \new lyrics @{ LYRICS @}
3841 @end example
3842
3843 @refbugs
3844
3845 @code{\addlyrics} cannot handle polyphony.
3846
3847
3848 @node Entering lyrics
3849 @subsection Entering lyrics
3850
3851
3852 @cindex lyrics
3853 @cindex @code{\lyricmode}
3854 @cindex punctuation
3855
3856 Lyrics are entered in a special input mode.  This mode is introduced
3857 by the keyword @code{\lyricmode}, or by using @code{addlyrics} or
3858 @code{lyricsto}.  In this mode you can enter lyrics,
3859 with punctuation and accents, and the input @code{d} is not parsed as
3860 a pitch, but rather as a one letter syllable.  Syllables are entered
3861 like notes, but with pitches replaced by text.  For example,
3862 @example
3863 \lyricmode @{ Twin-4 kle4 twin- kle litt- le star2 @}
3864 @end example
3865
3866
3867 A word lyrics mode begins with an alphabetic character, and ends with
3868 any space or digit.  The following characters can be any character
3869 that is not a digit or white space.  One important consequence of this
3870 is that a word can end with @code{@}}.  The following example is
3871 usually a mistake in the input file.  The syllable includes a @code{@}}, so the
3872 opening brace is not balanced
3873 @example
3874 \lyricmode @{ twinkle@}
3875 @end example
3876
3877 @cindex @code{\property}, in @code{\lyricmode}
3878 @noindent
3879 Similarly, a period which follows an alphabetic sequence is included in
3880 the resulting string.  As a consequence, spaces must be inserted around
3881 property commands
3882 @example
3883 \override Score . LyricText #'font-shape = #'italic
3884 @end example
3885
3886 @cindex @code{_}
3887 @cindex spaces, in lyrics
3888 @cindex quotes, in lyrics
3889
3890 Any @code{_} character that appears in an unquoted word is converted
3891 to a space.  This provides a mechanism for introducing spaces into words
3892 without using quotes.  Quoted words can also be used in Lyrics mode to
3893 specify words that cannot be written with the above rules.  The
3894 following example incorporates double quotes
3895
3896 @example
3897 \lyricmode @{ He said: "\"Let" my peo ple "go\"" @}
3898 @end example
3899
3900 This example is slightly academic, since it gives better looking
3901 results using single quotes, @code{``} and @code{''}
3902 @example
3903 \lyricmode @{ He said: ``Let my peo ple go'' @}
3904 @end example
3905
3906
3907 The full definition of a word start in Lyrics mode is somewhat more
3908 complex.
3909
3910 A word in Lyrics mode begins with: an alphabetic character, @code{_},
3911 @code{?}, @code{!}, @code{:}, @code{'}, the control characters @code{^A}
3912 through @code{^F}, @code{^Q} through @code{^W}, @code{^Y}, @code{^^},
3913 any 8-bit character with ASCII code over 127, or a two-character
3914 combination of a backslash followed by one of @code{`}, @code{'},
3915 @code{"}, or @code{^}.
3916
3917
3918
3919 @seealso
3920
3921 Program reference: events @internalsref{LyricEvent}, and
3922 @internalsref{LyricText}.
3923
3924 @refbugs
3925
3926 The definition of lyrics mode is too complex.
3927
3928 @node Hyphens and extenders
3929 @subsection Hyphens and extenders
3930
3931 @cindex hyphens
3932
3933 Centered hyphens are entered as `@code{-}@code{-}' between syllables.
3934 The hyphen will have variable length depending on the space between
3935 the syllables and it will be centered between the syllables.
3936
3937 @cindex melisma
3938 @cindex extender
3939
3940 When a lyric is sung over many notes (this is called a melisma), this is
3941 indicated with a horizontal line centered between a syllable and the
3942 next one.  Such a line is called an extender line, and it is entered as
3943 @code{__}.
3944
3945 @ignore
3946 FIXME: check that this compiles and displays correctly.  I don't want
3947 to commit this part blindly.
3948
3949 In tighly engraved music, hyphens can be removed.  In some languages
3950 (e.g. German and Hungarian), hyphens should not disappear, since
3951 spelling depends on hyphenation.  For that purpose, hyphens can be
3952 forced to remain by overriding @code{minimum-length} of
3953 the @code{LyricHyphen} grob.
3954
3955 (code from 2.2)
3956 \score {
3957 <<    \notes \new Staff \relative c'' { \time 1/4 c16[ c c  c]
3958 \time 1/4
3959 c16[ c c c]
3960 \time 1/4
3961 c16[ c c c]
3962
3963 }
3964     \lyrics \new Lyrics \with {
3965         % Otherwise lyrics are so far apart that hyphens don't disappear
3966         \override SeparationItem #'padding = #0.0
3967         }{ bla -- bla -- bla -- bla --
3968            bla -- bla -- bla -- bla --
3969
3970            \override LyricHyphen  #'minimum-length = #0.7
3971            \override LyricHyphen  #'spacing-procedure =
3972                   #Hyphen_spanner::set_spacing_rods
3973
3974            bla -- bla -- bla -- bla 
3975        }>>
3976     \paper   {
3977         indent = 0.0 \cm
3978         linewidth = 3.4 \cm
3979
3980         \context {
3981             \StaffContext \remove "Time_signature_engraver"
3982         }
3983         
3984     }
3985       
3986 }
3987 @end ignore
3988
3989
3990 @seealso
3991
3992 Program reference: @internalsref{HyphenEvent},
3993 @internalsref{ExtenderEvent}, @internalsref{LyricHyphen}, and
3994 @internalsref{LyricExtender}
3995
3996
3997
3998 @node The Lyrics context
3999 @subsection The Lyrics context
4000
4001
4002 Lyrics are printed by interpreting them in a @internalsref{Lyrics} context
4003 @example
4004 \context Lyrics \lyricmode @dots{}
4005 @end example
4006
4007 @cindex automatic syllable durations
4008 @cindex @code{\lyricsto}
4009 @cindex lyrics and melodies
4010
4011 This will place the lyrics according to the durations that were
4012 entered.  The lyrics can also be aligned under a given melody
4013 automatically.  In this case, it is no longer necessary to enter the
4014 correct duration for each syllable.  This is achieved by combining the
4015 melody and the lyrics with the @code{\lyricsto} expression
4016 @example
4017 \lyricsto @var{name} \new Lyrics @dots{}
4018 @end example
4019
4020 This aligns the lyrics to the
4021 notes of the @internalsref{Voice} context called @var{name}, which has
4022 to exist.  Therefore, normally the @code{Voice} is specified first, and
4023 then the lyrics are specified with @code{\lyricsto}.  The command
4024 @code{\lyricsto} switches to @code{\lyricmode} mode automatically, so the
4025 @code{\lyricmode} keyword may be omitted.
4026
4027 For different or more complex orderings, the best way is to setup the
4028 hierarchy of staves and lyrics first, e.g.,
4029 @example
4030 \context ChoirStaff <<
4031   \context Lyrics = sopranoLyrics @{ s1 @}
4032   \context Voice = soprano @{ @emph{music} @}
4033   \context Lyrics = tenorLyrics @{ s1 @}
4034   \context Voice = tenor @{ @emph{music} @}
4035 >>
4036 @end example
4037 and then combine the appropriate melodies and lyric lines
4038 @example
4039 \lyricsto "soprano" \context Lyrics = sopranoLyrics
4040   @emph{the lyrics}
4041 @end example
4042
4043 @noindent
4044 The final input would resemble
4045
4046 @example
4047 <<\context ChoirStaff << @emph{setup the music} >>
4048   \lyricsto "soprano" @emph{etc}
4049   \lyricsto "alto" @emph{etc}
4050   @emph{etc}
4051 >>
4052 @end example
4053
4054
4055 The @code{\lyricsto} command detects melismata: it only puts one
4056 syllable under a tied or slurred group of notes.  If you want to force
4057 an unslurred group of notes to be a melisma, insert @code{\melisma}
4058 after the first note of the group, and @code{\melismaEnd} after the
4059 last one, e.g.,
4060
4061 @lilypond[quote,relative=2,raggedright,fragment,verbatim]
4062 <<
4063   \context Voice = "lala" {
4064     \time 3/4
4065     f4 g8
4066     \melisma
4067     f e f
4068     \melismaEnd
4069     e2
4070   }
4071   \lyricsto "lala" \new Lyrics {
4072     la di __ daah
4073   }
4074 >>
4075 @end lilypond
4076
4077 In addition, notes are considered a melisma if they are manually
4078 beamed, and automatic beaming (see @ref{Setting automatic beam
4079 behavior}) is switched off.
4080
4081 @ignore
4082
4083 @c nonformation:
4084
4085 The criteria for deciding melismata can
4086 be tuned with the property @code{melismaBusyProperties}.  See
4087 @internalsref{Melisma_translator} in the program reference for more
4088 information.
4089
4090 @end ignore
4091
4092 Lyrics can also be entered without @code{\lyricsto}.  In this case the
4093 duration of each syllable must be entered explicitly, for example,
4094
4095 @example
4096 play2 the4 game2.
4097 sink2 or4 swim2.
4098 @end example
4099
4100 The alignment to a melody can be specified with the
4101 @code{associatedVoice} property,
4102
4103 @example
4104 \set associatedVoice = #"lala"
4105 @end example
4106
4107 @noindent
4108 The value of the property (here: @code{"lala"}) should be the name of
4109 a @internalsref{Voice} context.  Without this setting, extender lines
4110 will not be formatted properly.
4111
4112 Here is an example demonstrating manual lyric durations,
4113
4114 @lilypond[relative=1,raggedright,verbatim,fragment,quote]
4115 << \context Voice = melody {
4116      \time 3/4
4117      c2 e4 g2.
4118   }
4119   \new Lyrics \lyricmode {
4120     \set associatedVoice = #"melody"
4121     play2 the4 game2.
4122   } >>
4123 @end lilypond
4124
4125 @cindex SATB
4126 @cindex choral score
4127
4128 A complete example of a SATB score setup is in section
4129 @ref{Vocal ensembles}.
4130
4131
4132 @refcommands
4133
4134 @code{\melisma}, @code{\melismaEnd}
4135 @cindex @code{\melismaEnd}
4136 @cindex @code{\melisma}
4137
4138 @seealso
4139
4140 Program reference: @internalsref{LyricCombineMusic},
4141 @internalsref{Lyrics}, @internalsref{Melisma_translator}.
4142
4143
4144 @inputfileref{input/@/regression,lyric@/-combine@/-new@/.ly}.
4145 @c TODO: make separate section for melismata
4146
4147 @c  I can't find these examples in 2.0 or 2.2; remove. -gp
4148 @c @inputfileref{input/@/test,lyrics@/-melisma@/-variants@/.ly}.
4149 @c @inputfileref{input/@/test,lyrics@/-melisma@/-faster@/.ly}.
4150
4151 @refbugs
4152
4153 Melismata are not detected automatically, and extender lines must be
4154 inserted by hand.
4155
4156
4157 @c TODO: document \new Staff << Voice \lyricsto >> bug
4158
4159 @node Flexibility in alignment
4160 @subsection Flexibility in alignment
4161
4162
4163 Often, different stanzas of one song are put to one melody in slightly
4164 differing ways.  Such variations can still be captured with
4165 @code{\lyricsto}.
4166
4167 One possibility is that the text has a melisma in one stanza, but
4168 multiple syllables in another one.  One solution is to make the faster
4169 voice ignore the melisma.  This is done by setting
4170 @code{ignoreMelismata} in the Lyrics context.
4171
4172 There has one tricky aspect.  The setting for @code{ignoreMelismata}
4173 must be set one syllable @emph{before} the non-melismatic syllable
4174 in the text, as shown here,
4175
4176 @lilypond[verbatim,raggedright,quote]
4177 <<
4178   \relative \context Voice = "lahlah" {
4179     \set Staff.autoBeaming = ##f
4180     c4
4181     \slurDotted
4182     f8.[( g16])
4183     a4
4184   }
4185   \new Lyrics \lyricsto "lahlah" {
4186     more slow -- ly
4187   }
4188   \new Lyrics \lyricsto "lahlah" {
4189     \set ignoreMelismata = ##t % applies to "fas"
4190     go fas -- ter
4191     \unset ignoreMelismata
4192     still
4193   }
4194 >>
4195 @end lilypond
4196
4197
4198 The @code{ignoreMelismata} applies to the syllable ``fas'', so it
4199 should be entered before ``go''.
4200
4201 The reverse is also possible: making a lyric line slower than the
4202 standard.  This can be achieved by insert @code{\skip}s into the
4203 lyrics.  For every @code{\skip}, the text will be delayed another note.
4204 For example,
4205
4206 @lilypond[verbatim,raggedright,quote]
4207 \relative { c c g' }
4208 \addlyrics {
4209   twin -- \skip 4
4210   kle
4211 }
4212 @end lilypond
4213
4214 More complex variations in text underlay are possible.  It is possible
4215 to switch the melody for a line of lyrics during the text.  This is
4216 done by setting the @code{associatedVoice} property.  In the example
4217
4218 @lilypond[raggedright,quote]
4219 <<
4220   \relative \context Voice = "lahlah" {
4221     \set Staff.autoBeaming = ##f
4222     c4
4223     <<
4224       \context Voice = alternative {
4225         \voiceOne
4226         \times 2/3 {
4227           % show associations clearly.
4228           \override NoteColumn #'force-hshift = #-3
4229           f8 f g
4230         }
4231       }
4232       {
4233         \voiceTwo
4234         f8.[ g16]
4235         \oneVoice
4236       } >>
4237     a8( b) c
4238   }
4239   \new Lyrics \lyricsto "lahlah" {
4240     Ju -- ras -- sic Park
4241   }
4242   \new Lyrics \lyricsto "lahlah" {
4243     % Tricky: need to set associatedVoice
4244     % one syllable too soon!
4245     \set associatedVoice = alternative % applies to "ran"
4246     Ty --
4247     ran --
4248     no --
4249     \set associatedVoice = lahlah % applies to "rus"
4250     sau -- rus Rex
4251   } >>
4252 @end lilypond
4253
4254 @noindent
4255 the text for the first stanza is set to a melody called ``lahlah'',
4256
4257 @example
4258 \new Lyrics \lyricsto "lahlah" @{
4259   Ju -- ras -- sic Park
4260 @}
4261 @end example
4262
4263
4264 The second stanza initially is set to the @code{lahlah} context, but
4265 for the syllable ``ran'', it switches to a different melody.
4266 This is achieved with
4267 @example
4268 \set associatedVoice = alternative
4269 @end example
4270
4271 @noindent
4272 Here, @code{alternative} is the name of the @code{Voice} context
4273 containing the triplet.
4274
4275 Again, the command must be one syllable too early, before ``Ty'' in
4276 this case.
4277
4278 @example
4279 \new Lyrics \lyricsto "lahlah" @{
4280   \set associatedVoice = alternative % applies to "ran"
4281   Ty --
4282   ran --
4283   no --
4284   \set associatedVoice = lahlah % applies to "rus"
4285   sau -- rus Rex
4286 @}
4287 @end example
4288
4289 @noindent
4290 The underlay is switched back to the starting situation by assigning
4291 @code{lahlah} to @code{associatedVoice}.
4292
4293
4294
4295
4296 @node More stanzas
4297 @subsection More stanzas
4298
4299 @cindex phrasing, in lyrics
4300
4301
4302 @cindex stanza number
4303 @cindex singer's names
4304 @cindex name of singer
4305
4306 Stanza numbers can be added by setting @code{stanza}, e.g.,
4307
4308 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
4309 \new Voice {
4310   \time 3/4 g2 e4 a2 f4 g2.
4311 } \addlyrics {
4312   \set stanza = "1. "
4313   Hi, my name is Bert.
4314 } \addlyrics {
4315   \set stanza = "2. "
4316   Oh, che -- ri, je t'aime
4317 }
4318 @end lilypond
4319
4320 These numbers are put just before the start of first syllable.
4321
4322 Names of singers can also be added.  They are printed at the start of
4323 the line, just like instrument names.  They are created by setting
4324 @code{vocalName}.  A short version may be entered as @code{vocNam}.
4325
4326
4327 @lilypond[fragment,raggedright,quote,verbatim,relative=2]
4328 \new Voice {
4329   \time 3/4 g2 e4 a2 f4 g2.
4330 } \addlyrics {
4331   \set vocalName = "Bert "
4332   Hi, my name is Bert.
4333 } \addlyrics {
4334   \set vocalName = "Ernie "
4335   Oh, che -- ri, je t'aime
4336 }
4337 @end lilypond
4338
4339 @seealso
4340
4341 Program reference: Layout objects @internalsref{LyricText} and
4342 @internalsref{VocalName}.  Music expressions
4343 @internalsref{LyricEvent}.
4344
4345
4346
4347 @node Ambitus
4348 @subsection Ambitus
4349 @cindex ambitus
4350
4351 The term @emph{ambitus} denotes a range of pitches for a given voice
4352 in a part of music.  It may also denote the pitch range that a musical
4353 instrument is capable of playing.  Ambits are printed on vocal parts,
4354 so performers can easily determine it meets their capabilities.
4355
4356 Ambits are denoted at the beginning of a piece near the initial clef.
4357 The range is graphically specified by two note heads that represent the
4358 minimum and maximum pitch.  To print such ambits, add the
4359 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
4360 for example,
4361
4362 @example
4363 \layout @{
4364   \context @{
4365     \Voice
4366     \consists Ambitus_engraver
4367   @}
4368 @}
4369 @end example
4370
4371 This results in the following output
4372
4373 @lilypond[quote,raggedright]
4374 \layout {
4375   \context {
4376     \Staff
4377     \consists Ambitus_engraver
4378   }
4379 }
4380
4381 \relative \new Staff {
4382   as'' c e2 cis,2
4383 }
4384 @end lilypond
4385
4386 If you have multiple voices in a single staff and you want a single
4387 ambitus per staff rather than per each voice, add the
4388 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
4389 rather than to the @internalsref{Voice} context.  Here is an example,
4390
4391 @lilypond[verbatim,raggedright,quote]
4392 \new Staff \with {
4393   \consists "Ambitus_engraver"
4394 }
4395 <<
4396   \new Voice \with {
4397     \remove "Ambitus_engraver"
4398   } \relative c'' {
4399     \override Ambitus #'X-offset-callbacks
4400       = #(list (lambda (grob axis) -1.0))
4401     \voiceOne
4402     c4 a d e f2
4403   }
4404   \new Voice \with {
4405     \remove "Ambitus_engraver"
4406   } \relative c' {
4407     \voiceTwo
4408     es4 f g as b2
4409   }
4410 >>
4411 @end lilypond
4412
4413 @noindent
4414 This example uses one advanced feature,
4415
4416 @example
4417 \override Ambitus #'X-offset-callbacks
4418   = #(list (lambda (grob axis) -1.0))
4419 @end example
4420
4421 @noindent
4422 This code moves the ambitus to the left.  The same effect could have
4423 been achieved with @code{extra-offset}, but then the formatting system
4424 would not reserve space for the moved object.
4425
4426 @seealso
4427
4428 Program reference: @internalsref{Ambitus},
4429 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
4430 @internalsref{AmbitusAccidental}.
4431
4432 Examples: @inputfileref{input/@/regression,ambitus@/.ly}.
4433
4434 @refbugs
4435
4436 There is no collision handling in the case of multiple per-voice
4437 ambitus.
4438
4439 @node Other vocal issues
4440 @subsection Other vocal issue
4441
4442 @ignore
4443 yeah, I'm giving up somewhat by stuffing a bunch of things in
4444 here.  But at least they're in the manual now; it's easier to
4445 move them around in the manual once they're already here.
4446
4447 Besides, if users complain about everything stuffed in here, I
4448 can ask them for specific instructions about where to move these
4449 examples, and that might get them more involved in the docs.  -gp
4450 @end ignore
4451
4452 You can display alternate (or divisi) lyrics by naming voice
4453 contexts and attaching lyrics to those specific contexts.
4454
4455 @lilypond[verbatim,raggedright,quote]
4456 \score{ <<
4457   \context Voice = "melody" {
4458     \relative c' {
4459       c4
4460       <<
4461         { \voiceOne c8 e }
4462         \context Voice = splitpart { \voiceTwo c4 }
4463       >>
4464       \oneVoice c4 c | c
4465     }
4466   }
4467   \new Lyrics \lyricsto "melody" { we shall not o- ver- come }
4468   \new Lyrics \lyricsto "splitpart" { shall }
4469 >> }
4470 @end lilypond
4471
4472
4473 You can use this trick to display different lyrics for a repeated
4474 section.
4475
4476 @lilypond[verbatim,raggedright,quote]
4477 \score{ <<
4478   \context Voice = melody \relative c' {
4479     c2 e | g e | c1 |
4480     \context Voice = verse \repeat volta 2 {c4 d e f | g1 | }
4481     a2 b | c1}
4482   \lyricsto melody  \context Lyrics = mainlyrics \lyricmode {
4483     do mi sol mi do
4484     la si do }
4485   \lyricsto verse \context Lyrics = mainlyrics \lyricmode {
4486    do re mi fa sol }
4487   \lyricsto verse \context Lyrics = repeatlyrics \lyricmode {
4488    dodo rere mimi fafa solsol }
4489 >>
4490 }
4491 @end lilypond
4492
4493
4494 @node Other instrument specific notation, Tablatures, Vocal music, Notation manual
4495 @section Other instrument specific notation
4496
4497 This section includes extra information for writing string music, and may
4498 include extra information for other instruments in the future.
4499
4500 @menu
4501 * Harmonic notes::              
4502 @end menu
4503
4504 @node Harmonic notes, , Other instrument specific notation, Other instrument specific notation
4505 @subsection Harmonic notes
4506
4507 @cindex artificial harmonics
4508 @cindex harmonics
4509
4510 Artificial harmonics are notated with a different notehead style.  They
4511 are entered by marking the harmonic pitch with @code{\harmonic}.
4512
4513 @lilypond[raggedright,verbatim,quote,fragment]
4514 <c' g'\harmonic>4
4515 @end lilypond
4516
4517
4518 @node Tablatures, Popular music, Other instrument specific notation, Notation manual
4519 @section Tablatures
4520
4521 @cindex tablature
4522 @cindex guitar tablature
4523
4524 Tablature notation is used for notating music for plucked string
4525 instruments.  Pitches are not denoted with note heads, but by
4526 indicating on which string and fret a note must be played.  LilyPond
4527 offers limited support for tablature.
4528
4529 @menu
4530 * Tablatures basic::            
4531 * Non-guitar tablatures::       
4532 @end menu
4533
4534 @node Tablatures basic, Non-guitar tablatures, Tablatures, Tablatures
4535 @subsection Tablatures basic
4536 @cindex Tablatures basic
4537
4538 The string number associated to a note is given as a backslash
4539 followed by a number, e.g., @code{c4\3} for a C quarter on the third
4540 string.  By default, string 1 is the highest one, and the tuning
4541 defaults to the standard guitar tuning (with 6 strings).  The notes
4542 are printed as tablature, by using @internalsref{TabStaff} and
4543 @internalsref{TabVoice} contexts
4544
4545 @lilypond[quote,raggedright,fragment,verbatim]
4546 \context TabStaff {
4547   a,4\5 c'\2 a\3 e'\1
4548   e\4 c'\2 a\3 e'\1
4549 }
4550 @end lilypond
4551
4552 @cindex @code{minimumFret}
4553 @cindex fret
4554
4555 When no string is specified, the first string that does not give a
4556 fret number less than @code{minimumFret} is selected.  The default
4557 value for @code{minimumFret} is 0
4558
4559
4560 @example
4561 e16 fis gis a b4
4562 \set TabStaff.minimumFret = #8
4563 e16 fis gis a b4
4564 @end example
4565 @lilypond[quote,raggedright]
4566 frag = {
4567   \key e \major
4568   e16 fis gis a b4
4569   \set TabStaff.minimumFret = #8
4570   e16 fis gis a b4
4571 }
4572   \context StaffGroup <<
4573     \context Staff { \clef "G_8" \frag }
4574     \context TabStaff { \frag }
4575   >>
4576 @end lilypond
4577
4578 @seealso
4579
4580 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}, and
4581 @internalsref{StringNumberEvent}.
4582
4583 @refbugs
4584
4585 Chords are not handled in a special way, and hence the automatic
4586 string selector may easily select the same string to two notes in a
4587 chord.
4588
4589
4590 @node Non-guitar tablatures, , Tablatures basic, Tablatures
4591 @subsection Non-guitar tablatures
4592 @cindex Non-guitar tablatures
4593
4594 You can change the number of strings, by setting the number of lines
4595 in the @internalsref{TabStaff}.
4596
4597 You can change the tuning of the strings.  A string tuning is given as
4598 a Scheme list with one integer number for each string, the number
4599 being the pitch (measured in semitones relative to middle C) of an
4600 open string.  The numbers specified for @code{stringTuning} are the
4601 numbers of semitones to subtract or add, starting the specified pitch
4602 by default middle C, in string order.  In the next example,
4603 @code{stringTunings} is set for the pitches e, a, d, and g
4604
4605 @lilypond[quote,raggedright,fragment,verbatim]
4606 \context TabStaff <<
4607   \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
4608   {
4609     a,4 c' a e' e c' a e'
4610   }
4611 >>
4612 @end lilypond
4613
4614 @refbugs
4615
4616 No guitar special effects have been implemented.
4617
4618 @seealso
4619
4620 Program reference: @internalsref{Tab_note_heads_engraver}.
4621
4622
4623 @node Popular music, Orchestral music, Tablatures, Notation manual
4624 @section Popular music
4625
4626 This section discusses issues that arise when writing popular music.
4627
4628 @menu
4629 * Chord names::                 
4630 * Chords mode::                 
4631 * Printing chord names::        
4632 * Fret diagrams::               
4633 * Improvisation::               
4634 @end menu
4635
4636 @node Chord names, Chords mode, Popular music, Popular music
4637 @subsection Chord names
4638 @cindex Chords
4639
4640 LilyPond has support for printing chord names.  Chords may be entered
4641 in musical chord notation, i.e., @code{< .. >}, but they can also be
4642 entered by name.  Internally, the chords are represented as a set of
4643 pitches, so they can be transposed
4644
4645
4646 @lilypond[quote,raggedright,verbatim,raggedright]
4647 twoWays = \transpose c c' {
4648   \chordmode {
4649     c1 f:sus4 bes/f
4650   }
4651   <c e g>
4652   <f bes c'>
4653   <f bes d'>
4654 }
4655
4656 << \context ChordNames \twoWays
4657    \context Voice \twoWays >>
4658 @end lilypond
4659
4660 This example also shows that the chord printing routines do not try to
4661 be intelligent.  The last chord (@code{f bes d}) is not interpreted as
4662 an inversion.
4663
4664 @c this menu isn't needed.
4665 @ignore
4666 @menu
4667 * Chords mode::
4668 * Printing chord names::
4669 @end menu
4670 @end ignore
4671
4672 @node Chords mode
4673 @subsection Chords mode
4674 @cindex Chords mode
4675
4676 In chord mode sets of pitches (chords) are entered with normal note
4677 names.  A chord is entered by the root, which is entered like a
4678 normal pitch
4679
4680 @lilypond[quote,raggedright,fragment,verbatim]
4681 \chordmode { es4. d8 c2 }
4682 @end lilypond
4683
4684 @noindent
4685 The mode is introduced by the keyword @code{\chordmode}.
4686
4687 @cindex chord entry
4688 @cindex chord mode
4689
4690 Other chords may be entered by suffixing a colon and introducing a
4691 modifier (which may include a number if desired)
4692 @lilypond[quote,fragment,verbatim]
4693 \chordmode { e1:m e1:7 e1:m7 }
4694 @end lilypond
4695 The first number following the root is taken to be the `type' of the
4696 chord, thirds are added to the root until it reaches the specified
4697 number
4698 @lilypond[quote,fragment,verbatim]
4699 \chordmode { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
4700 @end lilypond
4701
4702 @cindex root of chord
4703 @cindex additions, in chords
4704 @cindex removals, in chords
4705
4706 More complex chords may also be constructed adding separate steps
4707 to a chord.  Additions are added after the number following
4708 the colon and are separated by dots
4709 @lilypond[quote,verbatim,fragment]
4710 \chordmode { c:5.6 c:3.7.8 c:3.6.13 }
4711 @end lilypond
4712 Chord steps can be altered by suffixing a @code{-} or @code{+} sign
4713 to the number
4714 @lilypond[quote,verbatim,fragment]
4715 \chordmode { c:7+ c:5+.3- c:3-.5-.7- }
4716 @end lilypond
4717 Removals are specified similarly and are introduced by a caret.  They
4718 must come after the additions
4719 @lilypond[quote,verbatim,fragment]
4720 \chordmode { c^3 c:7^5 c:9^3.5 }
4721 @end lilypond
4722
4723 Modifiers can be used to change pitches.  The following modifiers are
4724 supported
4725
4726 @table @code
4727 @item m
4728 The minor chord.  This modifier lowers the 3rd and (if present) the 7th step.
4729
4730 @item dim
4731 The diminished chord.  This modifier lowers the 3rd, 5th and (if present)
4732 the 7th step.
4733
4734 @item aug
4735 The augmented chord.  This modifier raises the 5th step.
4736
4737 @item maj
4738 The major 7th chord.  This modifier raises the 7th step if present.
4739
4740 @item sus
4741 The suspended 4th or 2nd.  This modifier removes the 3rd
4742 step.  Append either @code{2} or @code{4} to add the 2nd or 4th step to
4743 the chord.
4744 @end table
4745
4746 Modifiers can be mixed with additions
4747 @lilypond[quote,verbatim,fragment]
4748   \chordmode { c:sus4 c:7sus4 c:dim7 c:m6 }
4749 @end lilypond
4750
4751 @cindex modifiers, in chords.
4752 @cindex @code{aug}
4753 @cindex @code{dim}
4754 @cindex @code{maj}
4755 @cindex @code{sus}
4756 @cindex @code{m}
4757
4758 Since an unaltered 11 does not sound good when combined with an
4759 unaltered 3, the 11 is removed in this case (unless it is added
4760 explicitly)
4761 @lilypond[quote,raggedright,fragment,verbatim]
4762 \chordmode { c:13 c:13.11 c:m13 }
4763 @end lilypond
4764
4765 @cindex @code{/}
4766
4767 An inversion (putting one pitch of the chord on the bottom), as well
4768 as bass notes, can be specified by appending
4769 @code{/}@var{pitch} to the chord
4770 @lilypond[quote,raggedright,fragment,verbatim]
4771 \chordmode { c1 c/g c/f }
4772 @end lilypond
4773 @cindex @code{/+}
4774
4775 A bass note can be added instead transposed out of the chord,
4776 by using @code{/+}@var{pitch}.
4777
4778 @lilypond[quote,raggedright,fragment,verbatim]
4779 \chordmode { c1 c/+g c/+f }
4780 @end lilypond
4781
4782 Chords is a mode similar to @code{\lyricmode}, etc.  Most
4783 of the commands continue to work, for example, @code{r} and
4784 @code{\skip} can be used to insert rests and spaces, and property
4785 commands may be used to change various settings.
4786
4787
4788
4789 @refbugs
4790
4791 Each step can only be present in a chord once.  The following
4792 simply produces the augmented chord, since @code{5+} is interpreted
4793 last
4794 @cindex clusters
4795 @lilypond[quote,raggedright,verbatim,fragment]
4796 \chordmode { c:5.5-.5+ }
4797 @end lilypond
4798
4799
4800 @node Printing chord names
4801 @subsection Printing chord names
4802
4803 @cindex printing chord names
4804 @cindex chord names
4805 @cindex chords
4806
4807 For displaying printed chord names, use the @internalsref{ChordNames} context.
4808 The chords may be entered either using the notation
4809 described above, or directly using @code{<} and @code{>}
4810
4811 @lilypond[quote,verbatim,raggedright]
4812 harmonies = {
4813   \chordmode {a1 b c} <d' f' a'> <e' g' b'>
4814 }
4815 <<
4816   \context ChordNames \harmonies
4817   \context Staff \harmonies
4818 >>
4819 @end lilypond
4820
4821 You can make the chord changes stand out by setting
4822 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
4823 display chord names when there is a change in the chords scheme and at
4824 the start of a new line
4825
4826 @lilypond[quote,verbatim,raggedright]
4827 harmonies = \chordmode {
4828   c1:m c:m \break c:m c:m d
4829 }
4830 <<
4831   \context ChordNames {
4832     \set chordChanges = ##t
4833     \harmonies }
4834   \context Staff \transpose c c' \harmonies
4835 >>
4836 @end lilypond
4837
4838 The previous examples all show chords over a staff.  This is not
4839 necessary.  Chords may also be printed separately.  It may be necessary
4840 to add @internalsref{Volta_engraver} and @internalsref{Bar_engraver}
4841 for showing repeats.
4842
4843 @lilypond[raggedright,verbatim]
4844 \new ChordNames \with {
4845   \override BarLine #'bar-size = #4
4846   voltaOnThisStaff = ##t
4847   \consists Bar_engraver
4848   \consists "Volta_engraver"
4849 }
4850 \repeat volta 2 \chordmode {
4851   f1:maj f:7 bes:7
4852   c:maj
4853 } \alternative {
4854   es e
4855 }
4856 @end lilypond
4857
4858
4859 The default chord name layout is a system for Jazz music, proposed by
4860 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
4861 following properties
4862
4863 @table @code
4864 @cindex @code{chordNameExceptions}
4865 @item chordNameExceptions
4866 This is a list that contains the chords that have special formatting.
4867
4868 The exceptions list should be encoded as
4869 @example
4870 @{ <c f g bes>1 \markup @{ \super "7" "wahh" @} @}
4871 @end example
4872
4873 To get this information into @code{chordNameExceptions} takes a little
4874 manoeuvring.  The following code transforms @code{chExceptionMusic}
4875 (which is a sequential music) into a list of exceptions.
4876 @example
4877 (sequential-music-to-chord-exceptions chExceptionMusic #t)
4878 @end example
4879 Then,
4880 @example
4881 (append
4882  (sequential-music-to-chord-exceptions chExceptionMusic #t)
4883  ignatzekExceptions)
4884 @end example
4885 adds the new exceptions to the default ones, which are defined in
4886 @file{ly/@/chord@/-modifier@/-init@/.ly}.
4887
4888 For an example of tuning this property, see also
4889 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly}.
4890 @cindex exceptions, chord names.
4891
4892
4893 @cindex @code{majorSevenSymbol}
4894 @item majorSevenSymbol
4895 This property contains the markup object used for the 7th step, when
4896 it is major.  Predefined options are @code{whiteTriangleMarkup} and
4897 @code{blackTriangleMarkup}.  See
4898 @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly} for an example.
4899
4900 @cindex @code{chordNameSeparator}
4901 @item chordNameSeparator
4902 Different parts of a chord name are normally separated by a
4903 slash.  By setting @code{chordNameSeparator}, you can specify other
4904 separators, e.g.,
4905 @lilypond[quote,raggedright,fragment,verbatim]
4906 \context ChordNames \chordmode {
4907   c:7sus4
4908   \set chordNameSeparator
4909     = \markup { \typewriter "|" }
4910   c:7sus4
4911 }
4912 @end lilypond
4913
4914 @cindex @code{chordRootNamer}
4915 @item chordRootNamer
4916 The root of a chord is usually printed as a letter with an optional
4917 alteration.  The transformation from pitch to letter is done by this
4918 function.  Special note names (for example, the German ``H'' for a
4919 B-chord) can be produced by storing a new function in this property.
4920
4921 @cindex @code{chordNoteNamer}
4922 @item chordNoteNamer
4923 The default is to print single pitch, e.g., the bass note, using the
4924 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
4925 to a specialized function to change this behavior.  For example, the
4926 base can be printed in lower case.
4927
4928 @end table
4929
4930 The predefined variables @code{\germanChords},
4931 @code{\semiGermanChords} set these variables.  The effect is
4932 demonstrated here,
4933
4934 @lilypondfile[raggedright]{chord-names-german.ly}
4935
4936 There are also two other chord name schemes implemented: an alternate
4937 Jazz chord notation, and a systematic scheme called Banter chords.  The
4938 alternate Jazz notation is also shown on the chart in @ref{Chord name
4939 chart}.  Turning on these styles is described in the input file
4940 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
4941
4942 @cindex Banter
4943 @cindex jazz chords
4944 @cindex chords, jazz
4945
4946
4947 @refcommands
4948
4949 @cindex @code{\germanChords}
4950 @code{\germanChords},
4951 @cindex @code{\semiGermanChords}
4952 @code{\semiGermanChords}.
4953
4954
4955
4956
4957 @seealso
4958
4959 Examples: @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly},
4960 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly},
4961 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
4962
4963
4964 Init files: @file{scm/@/chords@/-ignatzek@/.scm}, and
4965 @file{scm/@/chord@/-entry@/.scm}.
4966
4967
4968 @refbugs
4969
4970 Chord names are determined solely from the list of pitches.  Chord
4971 inversions are not identified, and neither are added bass notes.  This
4972 may result in strange chord names when chords are entered with the
4973 @code{< .. >} syntax.
4974
4975
4976 @node Fret diagrams
4977 @subsection Fret diagrams
4978 @cindex fret diagrams
4979 @cindex chord diagrams
4980
4981 Fret diagrams can be added to music as a markup to the desired note.  The
4982 markup contains information about the desired fret diagram, as shown in the
4983 following example
4984
4985 @lilypond[verbatim, raggedright, quote]
4986 \context Voice {
4987   d' ^\markup \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-2;"
4988   d' d' d'
4989   fis' ^\markup \override #'(size . 0.75) {
4990     \override #'(finger-code . below-string) {
4991       \fret-diagram-verbose #'((place-fret 6 2 1) (barre 6 1 2)
4992                                (place-fret 5 4 3) (place-fret 4 4 4)
4993                                (place-fret 3 3 2) (place-fret 2 2 1)
4994                                (place-fret 1 2 1))
4995     }
4996   }
4997   fis' fis' fis'
4998   c' ^\markup \override #'(dot-radius . 0.35) {
4999     \override #'(finger-code . in-dot) {
5000       \override #'(dot-color . white) {
5001         \fret-diagram-terse #"x;3-1-(;5-2;5-3;5-4;3-1-);"
5002       }
5003     }
5004   }
5005   c' c' c'
5006 }
5007 @end lilypond
5008
5009
5010 There are three different fret-diagram markup interfaces: standard, terse,
5011 and verbose.  The three interfaces produce equivalent markups, but have
5012 varying amounts of information in the markup string.  Details about the
5013 markup interfaces are found at @ref{Overview of text markup commands}.
5014
5015 You can set a number of graphical properties according to your preference.
5016 Details about the property interface to fret diagrams are found at
5017 @internalsref{fret-diagram-interface}.
5018
5019
5020 @seealso
5021
5022 Examples: @inputfileref{input/@/test,fret@/-diagram@/.ly}
5023
5024
5025 @node Improvisation
5026 @subsection Improvisation
5027
5028 Improvisation is sometimes denoted with slashed note heads.  Such note
5029 heads can be created by adding a @internalsref{Pitch_squash_engraver}
5030 to the @internalsref{Staff} or @internalsref{Voice} context.  Then, the
5031 following command
5032
5033 @example
5034 \set squashedPosition = #0
5035 \override NoteHead #'style = #'slash
5036 @end example
5037
5038 @noindent
5039 switches on the slashes.
5040
5041 There are shortcuts @code{\improvisationOn} (and an accompanying
5042 @code{\improvisationOff}) for this command sequence.  They are used in
5043 the following example
5044
5045 @lilypond[verbatim,raggedright,quote]
5046 \new Staff \with {
5047   \consists Pitch_squash_engraver
5048 } \transpose c c' {
5049   e8 e g a a16(bes)(a8) g \improvisationOn
5050   e8
5051   ~e2~e8 f4 fis8
5052   ~fis2 \improvisationOff a16(bes) a8 g e
5053 }
5054 @end lilypond
5055
5056
5057
5058 @node Orchestral music
5059 @section Orchestral music
5060
5061 @cindex Writing parts
5062
5063 Orchestral music involves some special notation, both in the full
5064 score and the individual parts.  This section explains how to tackle
5065 some common problems in orchestral music.
5066
5067
5068
5069 @menu
5070 * System start delimiters::     
5071 * Aligning to cadenzas::        
5072 * Rehearsal marks::             
5073 * Bar numbers::                 
5074 * Instrument names::            
5075 * Transpose::                   
5076 * Instrument transpositions::   
5077 * Multi measure rests::         
5078 * Automatic part combining::    
5079 * Hiding staves::               
5080 * Different editions from one source::  
5081 * Quoting other voices::        
5082 * Formatting cue notes::        
5083 @end menu
5084
5085 @node System start delimiters
5086 @subsection System start delimiters
5087
5088 Polyphonic scores consist of many staves.  These staves can be
5089 constructed in three different ways
5090 @itemize @bullet
5091 @item The group is started with a brace at the left, and bar lines are
5092 connected.  This is done with the @internalsref{GrandStaff} context.
5093
5094 @lilypond[verbatim,raggedright,quote]
5095 \new GrandStaff
5096 \relative <<
5097   \new Staff { c1 c }
5098   \new Staff { c c }
5099 >>
5100 @end lilypond
5101
5102
5103 @item The group is started with a bracket, and bar lines are connected.
5104 This is done with the
5105 @internalsref{StaffGroup} context
5106
5107 @lilypond[verbatim,raggedright,quote]
5108 \new StaffGroup
5109 \relative <<
5110   \new Staff { c1 c }
5111   \new Staff { c c }
5112 >>
5113 @end lilypond
5114
5115
5116 @item The group is started with a vertical line.  Bar lines are not
5117 connected.  This is the default for the score.
5118
5119 @lilypond[verbatim,raggedright,quote]
5120 \relative <<
5121   \new Staff { c1 c }
5122   \new Staff { c c }
5123 >>
5124 @end lilypond
5125
5126 @end itemize
5127
5128 @cindex Staff, multiple
5129 @cindex bracket, vertical
5130 @cindex brace, vertical
5131 @cindex grand staff
5132 @cindex staff group
5133
5134
5135 @seealso
5136
5137 The bar lines at the start of each system are
5138 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
5139 @internalsref{SystemStartBracket}.  Only one of these types is created
5140 in every context, and that type is determined by the property
5141 @code{systemStartDelimiter}.
5142
5143 @node Aligning to cadenzas
5144 @subsection Aligning to cadenzas
5145
5146
5147 In an orchestral context, cadenzas present a special problem:
5148 when constructing a score that includes a cadenza, all other
5149 instruments should skip just as many notes as the length of the
5150 cadenza, otherwise they will start too soon or too late.
5151
5152 A solution to this problem are the functions @code{mmrest-of-length}
5153 and @code{skip-of-length}.  These Scheme functions take a piece of music
5154 as argument, and generate a @code{\skip} or multi-rest, exactly as
5155 long as the piece.  The use of @code{mmrest-of-length} is demonstrated
5156 in the following example.
5157
5158 @lilypond[verbatim,raggedright,quote]
5159 cadenza = \relative c' {
5160   c4 d8 << { e f g } \\ { d4. } >>
5161   g4 f2 g4 g
5162 }
5163
5164 \new GrandStaff <<
5165   \new Staff { \cadenza c'4 }
5166   \new Staff {
5167     #(ly:export (mmrest-of-length cadenza))
5168     c'4
5169   }
5170 >>
5171 @end lilypond
5172
5173
5174
5175
5176
5177 @node Rehearsal marks
5178 @subsection Rehearsal marks
5179 @cindex Rehearsal marks
5180 @cindex mark
5181 @cindex @code{\mark}
5182
5183 To print a rehearsal mark, use the @code{\mark} command
5184
5185 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
5186 c1 \mark \default
5187 c1 \mark \default
5188 c1 \mark #8
5189 c1 \mark \default
5190 c1 \mark \default
5191 @end lilypond
5192
5193 @noindent
5194 (The letter@tie{}`I' is skipped in accordance with engraving traditions.)
5195 @c umm, is the manual the right place for feature requests?  :)  -gp
5196 @c FIXME - should make that tunable.
5197
5198 The mark is incremented automatically if you use @code{\mark
5199 \default}, but you can also use an integer argument to set the mark
5200 manually.  The value to use is stored in the property
5201 @code{rehearsalMark}.
5202
5203 The style is defined by the property @code{markFormatter}.  It is a
5204 function taking the current mark (an integer) and the current context
5205 as argument.  It should return a markup object.  In the following
5206 example, @code{markFormatter} is set to a canned procedure.  After a
5207 few measures, it is set to function that produces a boxed number.
5208
5209 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5210 \set Score.markFormatter = #format-mark-numbers
5211 c1 \mark \default
5212 c1 \mark \default
5213 \set Score.markFormatter = #format-mark-box-numbers
5214 c1 \mark \default
5215 c1 \mark \default
5216 c1
5217 @end lilypond
5218
5219 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
5220 of @code{format-mark-numbers} (the default format), @code{format-mark-box-numbers},
5221 @code{format-mark-letters} and @code{format-mark-box-letters}.
5222 These can be used as inspiration for other formatting functions.
5223
5224
5225 @cindex coda on bar line
5226 @cindex segno on bar line
5227 @cindex fermata on bar line
5228 @cindex bar lines, symbols on
5229
5230 The @code{\mark} command can also be used to put signs like coda,
5231 segno, and fermata on a bar line.  Use @code{\markup} to
5232 access the appropriate symbol
5233
5234 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
5235 c1 \mark \markup { \musicglyph #"scripts-ufermata" }
5236 c1
5237 @end lilypond
5238
5239 If the mark occurs at a line break, the mark will be printed at the
5240 beginning of the next line.
5241 @c  IMO this is a bug; hopefully it'll be fixed soon, so I can
5242 @c  delete this sentence.   -gp
5243 If there is no next line, then the mark will not be printed at all.
5244 To print the mark at the end of the current line, use
5245
5246 @example
5247 \override Score.RehearsalMark
5248   #'break-visibility = #begin-of-line-invisible
5249 @end example
5250
5251 @cindex fermatas
5252 @cindex coda
5253 @cindex segno
5254 @cindex bar lines, putting symbols on
5255
5256 @seealso
5257
5258 Program reference: @internalsref{MarkEvent}, @internalsref{RehearsalMark}.
5259
5260 Init files: @file{scm/@/translation@/-functions@/.scm} contains the
5261 definition of @code{format-mark-numbers} and
5262 @code{format-mark-letters}.  They can be used as inspiration for other
5263 formatting functions.
5264
5265 Examples: @inputfileref{input/@/regression,rehearsal@/-mark@/-letter@/.ly},
5266
5267 @inputfileref{input/@/regression,rehearsal@/-mark@/-number@/.ly}.
5268
5269
5270 @node Bar numbers
5271 @subsection Bar numbers
5272
5273
5274 @cindex Bar numbers
5275 @cindex measure numbers
5276 @cindex @code{currentBarNumber}
5277
5278 Bar numbers are printed by default at the start of the line.  The
5279 number itself is stored in the @code{currentBarNumber} property, which
5280 is normally updated automatically for every measure.
5281
5282 Bar numbers can be typeset at regular intervals instead of at the
5283 beginning of each line.  This is illustrated in the following example,
5284 whose source is available as
5285 @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}
5286
5287 @lilypondfile[raggedright,quote]{bar-number-regular-interval.ly}
5288
5289 Bar numbers can be typeset manually by tweaking the
5290 @code{markFormatter} property
5291
5292 @lilypond[verbatim,raggedright,quote]
5293 \relative c' {
5294   \set Score.markFormatter
5295     = #(lambda (mark context)
5296       (make-bold-markup
5297         (make-box-markup
5298           (number->string (ly:context-property context
5299                                                'currentBarNumber)))))
5300
5301   c1 \bar "||" \mark \default c1 c1 \mark \default c1 \bar "|."
5302 }
5303 @end lilypond
5304
5305 Bar numbers can be manually changed by setting the
5306 @code{Staff.currentBarNumber} property
5307
5308 @lilypond[verbatim,raggedright,quote]
5309 \relative c' {
5310   \repeat unfold 4 {c4 c c c} \break
5311   \set Score.currentBarNumber = #50
5312   \repeat unfold 4 {c4 c c c}
5313 }
5314 @end lilypond
5315
5316 @seealso
5317
5318 Program reference: @internalsref{BarNumber}.
5319
5320 Examples:
5321 @inputfileref{input/@/test,bar@/-number@/-every@/-five@/-reset@/.ly},
5322 and @inputfileref{input/@/test,bar@/-number@/-regular@/-interval@/.ly}.
5323
5324 @refbugs
5325
5326 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
5327 there is one at the top.  To solve this, the
5328 @code{padding} property of @internalsref{BarNumber} can be
5329 used to position the number correctly.
5330
5331 @node Instrument names
5332 @subsection Instrument names
5333
5334 In an orchestral score, instrument names are printed at the left side
5335 of the staves.
5336
5337 This can be achieved by setting @internalsref{Staff}.@code{instrument}
5338 and @internalsref{Staff}.@code{instr}.  This will print a string before
5339 the start of the staff.  For the first staff, @code{instrument} is
5340 used, for the following ones, @code{instr} is used.
5341
5342 @lilypond[quote,verbatim,raggedright,relative=1,fragment]
5343 \set Staff.instrument = "Ploink "
5344 \set Staff.instr = "Plk "
5345 c1
5346 \break
5347 c''
5348 @end lilypond
5349
5350 You can also use markup texts to construct more complicated instrument
5351 names, for example
5352
5353 @lilypond[quote,fragment,verbatim,raggedright]
5354 \set Staff.instrument = \markup {
5355   \column { "Clarinetti"
5356             \line { "in B" \smaller \flat } } }
5357 c''1
5358 @end lilypond
5359
5360 For longer instrument names, it may be useful to increase the
5361 @code{indent} setting in the @code{\layout} block.
5362
5363 @seealso
5364
5365 Program reference: @internalsref{InstrumentName}.
5366
5367 @refbugs
5368
5369 When you put a name on a grand staff or piano staff, the width of the
5370 brace is not taken into account.  You must add extra spaces to the end of
5371 the name to avoid a collision.
5372
5373 @node Transpose
5374 @subsection Transpose
5375 @cindex Transpose
5376 @cindex transposition of pitches
5377 @cindex @code{\transpose}
5378
5379 A music expression can be transposed with @code{\transpose}.  The
5380 syntax is
5381 @example
5382 \transpose @var{from} @var{to} @var{musicexpr}
5383 @end example
5384
5385 This means that @var{musicexpr} is transposed by the interval between
5386 the pitches @var{from} and @var{to}: any note with pitch @code{from}
5387 is changed to @code{to}.
5388
5389
5390 For example, consider a piece written in the key of D-major.  If
5391 this piece is a little too low for its performer, it can be
5392 transposed up to E-major with
5393 @example
5394 \transpose d e @dots{}
5395 @end example
5396
5397 Consider a part written for violin (a C instrument).  If
5398 this part is to be played on the A clarinet, the following
5399 transposition will produce the appropriate part
5400
5401 @example
5402 \transpose a c @dots{}
5403 @end example
5404
5405 @code{\transpose} distinguishes between enharmonic pitches: both
5406 @code{\transpose c cis} or @code{\transpose c des} will transpose up
5407 half a tone.  The first version will print sharps and the second
5408 version will print flats
5409
5410 @lilypond[quote,raggedright,verbatim]
5411 mus = { \key d \major cis d fis g }
5412 \context Staff {
5413   \clef "F" \mus
5414   \clef "G"
5415   \transpose c g' \mus
5416   \transpose c f' \mus
5417 }
5418 @end lilypond
5419
5420
5421 @seealso
5422
5423 Program reference: @internalsref{TransposedMusic}, and
5424 @internalsref{UntransposableMusic}.
5425
5426 @refbugs
5427
5428 If you want to use both @code{\transpose} and @code{\relative},
5429 you must put @code{\transpose} outside of @code{\relative}, since
5430 @code{\relative} will have no effect music that appears inside a
5431 @code{\transpose}.
5432
5433 @node Instrument transpositions
5434 @subsection Instrument transpositions
5435
5436 The key of a transposing instrument can also be specified.  This
5437 applies to many wind instruments, for example, clarinets (B-flat, A, and
5438 E-flat), horn (F) and trumpet (B-flat, C, D, and E-flat).
5439
5440 The transposition is entered after the keyword @code{\transposition}
5441
5442 @example
5443 \transposition bes   %% B-flat clarinet
5444 @end example
5445
5446 @noindent
5447 This command sets the property @code{instrumentTransposition}.  The value of
5448 this property is used for MIDI output and quotations.  It does not
5449 affect how notes are printed in the current staff.
5450
5451 The pitch to use for @code{\transposition} should correspond to the
5452 transposition of the notes.  For example, when entering a score in
5453 concert pitch, typically all voices are entered in C, so
5454 they should be entered as
5455
5456 @example
5457 clarinet = @{
5458   \transposition c'
5459   ...
5460 @}
5461 saxophone = @{
5462   \transposition c'
5463   ...
5464 @}
5465 @end example
5466
5467 The command @code{\transposition} should be used when the music is
5468 entered from a (transposed) orchestral part.  For example, in
5469 classical horn parts, the tuning of the instrument is often changed
5470 during a piece.  When copying the notes from the part, use
5471 @code{\transposition}, e.g.,
5472
5473 @example
5474 \transposition d'
5475 c'4^"in D"
5476 ...
5477 \transposition g'
5478 c'4^"in G"
5479 ...
5480 @end example
5481
5482
5483
5484 @cindex transposition, MIDI
5485 @cindex transposition, instrument
5486
5487
5488 @node Multi measure rests
5489 @subsection Multi measure rests
5490 @cindex multi measure rests
5491 @cindex Rests, multi measure
5492
5493 @cindex @code{R}
5494
5495 Multi-measure rests are entered using `@code{R}'.  It is specifically
5496 meant for full bar rests and for entering parts: the rest can expand
5497 to fill a score with rests, or it can be printed as a single
5498 multi-measure rest.  This expansion is controlled by the property
5499 @code{Score.skipBars}.  If this is set to true, empty measures will not
5500 be expanded, and the appropriate number is added automatically
5501
5502 @lilypond[quote,raggedright,fragment,verbatim]
5503 \time 4/4 r1 | R1 | R1*2
5504 \set Score.skipBars = ##t R1*17 R1*4
5505 @end lilypond
5506
5507 The @code{1} in @code{R1} is similar to the duration notation used for
5508 notes.  Hence, for time signatures other than 4/4, you must enter other
5509 durations.  This can be done with augmentation dots or fractions
5510
5511 @lilypond[quote,raggedright,fragment,verbatim]
5512 \set Score.skipBars = ##t
5513 \time 3/4
5514 R2. | R2.*2
5515 \time 13/8
5516 R1*13/8
5517 R1*13/8*12 |
5518 \time 10/8 R4*5*4 |
5519 @end lilypond
5520
5521 An @code{R} spanning a single measure is printed as either a whole rest
5522 or a breve, centered in the measure regardless of the time signature.
5523
5524 If there are only a few measures of rest, LilyPond prints ``church rests''
5525 (a series of rectangles) in the staff.  To replace that with a simple
5526 rest, use @code{MultiMeasureRest.expand-limit}.
5527
5528 @lilypond[quote,raggedright,fragment,verbatim]
5529 \set Score.skipBars = ##t
5530 R1*2 | R1*5 | R1*9
5531 \override MultiMeasureRest #'expand-limit = 1
5532 R1*2 | R1*5 | R1*9
5533 @end lilypond
5534
5535
5536 @cindex text on multi-measure rest
5537 @cindex script on multi-measure rest
5538 @cindex fermata on multi-measure rest
5539
5540 Texts can be added to multi-measure rests by using the
5541 @var{note}-@code{markup} syntax (see @ref{Text markup}).
5542 A variable (@code{\fermataMarkup}) is provided for
5543 adding fermatas
5544
5545 @lilypond[quote,raggedright,verbatim,fragment]
5546 \set Score.skipBars = ##t
5547 \time 3/4
5548 R2.*10^\markup { \italic "ad lib." }
5549 R2.^\fermataMarkup
5550 @end lilypond
5551
5552 If you want to have text on the left end of a multi-measure rest,
5553 attach the text to a zero-length skip note, i.e.,
5554
5555 @example
5556 s1*0^"Allegro"
5557 R1*4
5558 @end example
5559
5560
5561 @cindex whole rests for a full measure
5562
5563 @seealso
5564
5565 Program reference: @internalsref{MultiMeasureRestEvent},
5566 @internalsref{MultiMeasureTextEvent},
5567 @internalsref{MultiMeasureRestMusicGroup}, and
5568 @internalsref{MultiMeasureRest}.
5569
5570 The layout object @internalsref{MultiMeasureRestNumber} is for the
5571 default number, and @internalsref{MultiMeasureRestText} for user
5572 specified texts.
5573
5574 @refbugs
5575
5576 It is not possible to use fingerings (e.g., @code{R1-4}) to put numbers
5577 over multi-measure rests.  And the pitch of multi-measure rests (or
5578 staff-centered rests) can not be influenced.
5579
5580 @cindex condensing rests
5581
5582 There is no way to automatically condense multiple rests into a single
5583 multi-measure rest.  Multi-measure rests do not take part in rest
5584 collisions.
5585
5586 Be careful when entering multi-measure rests followed by whole
5587 notes.  The following will enter two notes lasting four measures each
5588 @example
5589 R1*4 cis cis
5590 @end example
5591 When @code{skipBars} is set, the result will look OK, but the bar
5592 numbering will be off.
5593
5594 @node Automatic part combining
5595 @subsection Automatic part combining
5596 @cindex automatic part combining
5597 @cindex part combiner
5598
5599
5600 Automatic part combining is used to merge two parts of music onto a
5601 staff.  It is aimed at typesetting orchestral scores.  When the two
5602 parts are identical for a period of time, only one is shown.  In
5603 places where the two parts differ, they are typeset as separate
5604 voices, and stem directions are set automatically.  Also, solo and
5605 @emph{a due} parts are identified and can be marked.
5606
5607 The syntax for part combining is
5608
5609 @example
5610 \partcombine @var{musicexpr1} @var{musicexpr2}
5611 @end example
5612
5613
5614
5615 The following example demonstrates the basic functionality of the part
5616 combiner: putting parts on one staff, and setting stem directions and
5617 polyphony
5618
5619 @lilypond[quote,verbatim,raggedright,fragment]
5620 \new Staff \partcombine
5621   \relative g' { g g a( b) c c r r }
5622   \relative g' { g g r4 r e e g g }
5623 @end lilypond
5624
5625 The first @code{g} appears only once, although it was
5626 specified twice (once in each part).  Stem, slur, and tie directions are
5627 set automatically, depending whether there is a solo or unisono.  The
5628 first part (with context called @code{one}) always gets up stems, and
5629 `Solo', while the second (called @code{two}) always gets down stems and
5630 `Solo II'.
5631
5632 If you just want the merging parts, and not the textual markings, you
5633 may set the property @code{printPartCombineTexts} to false
5634
5635 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
5636 \new Staff <<
5637   \set Staff.printPartCombineTexts = ##f
5638   \partcombine
5639     \relative g' { g a( b) r }
5640     \relative g' { g r4 r f }
5641 >>
5642 @end lilypond
5643
5644 To change the text that is printed for solos or merging, you may
5645 set the @code{soloText}, @code{soloIIText}, and @code{aDueText}
5646 properties.
5647
5648 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
5649 \new Staff <<
5650   \set Score.soloText = #"ichi"
5651   \set Score.soloIIText = #"ni"
5652   \set Score.aDueText = #"tachi"
5653   \partcombine
5654     \relative g' { g4 g a( b) r }
5655     \relative g' { g4 g r r f }
5656 >>
5657 @end lilypond
5658
5659 Both arguments to @code{\partcombine} will be interpreted as
5660 @internalsref{Voice} contexts.  If using relative octaves,
5661 @code{\relative} should be specified for both music expressions, i.e.,
5662
5663 @example
5664 \partcombine
5665   \relative @dots{} @var{musicexpr1}
5666   \relative @dots{} @var{musicexpr2}
5667 @end example
5668
5669 @noindent
5670 A @code{\relative} section that is outside of @code{\partcombine} has
5671 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
5672
5673 @seealso
5674
5675 Program reference: @internalsref{PartCombineMusic},
5676 @internalsref{SoloOneEvent}, and
5677 @internalsref{SoloTwoEvent}, and
5678 @internalsref{UnisonoEvent}.
5679
5680 @refbugs
5681
5682 When @code{printPartCombineTexts} is set, when the two voices play the
5683 same notes on and off, the part combiner may typeset @code{a2} more
5684 than once in a measure.
5685
5686 @code{\partcombine} cannot be inside @code{\times}.
5687
5688 @code{\partcombine} cannot be inside @code{\relative}.
5689
5690 Internally, the @code{\partcombine} interprets both arguments as
5691 @code{Voice}s named @code{one} and @code{two}, and then decides when
5692 the parts can be combined.  Consequently, if the arguments switch to
5693 differently named @internalsref{Voice} contexts, the events in those
5694 will be ignored.
5695
5696 @node Hiding staves
5697 @subsection Hiding staves
5698
5699 @cindex Frenched scores
5700 @cindex Hiding staves
5701
5702 In orchestral scores, staff lines that only have rests are usually
5703 removed.  This saves some space.  This style is called `French Score'.
5704 For @internalsref{Lyrics},
5705 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
5706 switched on by default.  When the lines of these contexts turn out
5707 empty after the line-breaking process, they are removed.
5708
5709 For normal staves, a specialized @internalsref{Staff} context is
5710 available, which does the same: staves containing nothing (or only
5711 multi-measure rests) are removed.  The context definition is stored in
5712 @code{\RemoveEmptyStaffContext} variable.  Observe how the second staff
5713 in this example disappears in the second line
5714
5715 @lilypond[quote,raggedright,verbatim]
5716 \layout {
5717   \context { \RemoveEmptyStaffContext }
5718 }
5719
5720 {
5721   \relative c' <<
5722     \new Staff { e4 f g a \break c1 }
5723     \new Staff { c4 d e f \break R1 }
5724   >>
5725 }
5726 @end lilypond
5727
5728 The first system shows all staves in full.  If empty staves should be
5729 removed from the first system too, set @code{remove-first} to false in
5730 @internalsref{RemoveEmptyVerticalGroup}.
5731
5732 Another application is making ossia sections, i.e., alternative
5733 melodies on a separate piece of staff, with help of a Frenched
5734 staff.  See @inputfileref{input/@/test,ossia@/.ly} for an example.
5735
5736
5737 @node Different editions from one source
5738 @subsection Different editions from one source
5739
5740 @cindex tag
5741 The @code{\tag} command marks music expressions with a name.  These
5742 tagged expressions can be filtered out later.  With this mechanism it
5743 is possible to make different versions of the same music source.
5744
5745 In the following example, we see two versions of a piece of music, one
5746 for the full score, and one with cue notes for the instrumental part
5747
5748 @example
5749 c1
5750 <<
5751   \tag #'part <<
5752     R1 \\
5753     @{
5754       \set fontSize = #-1
5755       c4_"cue" f2 g4 @}
5756   >>
5757   \tag #'score R1
5758 >>
5759 c1
5760 @end example
5761
5762 The same can be applied to articulations, texts, etc.: they are
5763 made by prepending
5764 @example
5765 -\tag #@var{your-tag}
5766 @end example
5767 to an articulation, for example,
5768 @example
5769 c1-\tag #'part ^4
5770 @end example
5771
5772 This defines a note with a conditional fingering indication.
5773
5774 @cindex keepWithTag
5775 @cindex removeWithTag
5776 By applying the @code{\keepWithTag} and @code{\removeWithTag}
5777 commands, tagged expressions can be filtered.  For example,
5778 @example
5779 <<
5780   @var{the music}
5781   \keepWithTag #'score @var{the music}
5782   \keepWithTag #'part @var{the music}
5783 >>
5784 @end example
5785 would yield
5786
5787 @lilypondfile[raggedright,quote]{tag-filter.ly}
5788
5789
5790 The argument of the @code{\tag} command should be a symbol, or a list
5791 of symbols, for example,
5792 @example
5793 \tag #'(original-part transposed-part) @dots{}
5794 @end example
5795
5796
5797
5798 @seealso
5799
5800 Examples: @inputfileref{input/@/regression,tag@/-filter@/.ly}.
5801
5802 @refbugs
5803
5804 Multiple rests are not merged if you create the score with both tagged
5805 sections.
5806  
5807
5808 @node Quoting other voices
5809 @subsection Quoting other voices
5810
5811 With quotations, fragments of other parts can be inserted into a part
5812 directly.  Before a part can be quoted, it must be marked especially as
5813 quotable.  This is done with the @code{\addquote} command.
5814
5815 @example
5816 \addquote @var{name} @var{music}
5817 @end example
5818
5819
5820 @noindent
5821 Here, @var{name} is an identifying string.  The @var{music} is any kind
5822 of music.  Here is an example of @code{\addquote}
5823
5824 @example
5825 \addquote clarinet \relative c' @{
5826   f4 fis g gis
5827 @}
5828 @end example
5829
5830 This command must be entered at toplevel, i.e., outside any music
5831 blocks.
5832
5833 After calling @code{\addquote}, the quotation may then be done with
5834 @code{\quoteDuring} or @code{\cueDuring},
5835
5836 @example
5837 \quoteDuring #@var{name} @var{music}
5838 @end example
5839
5840 During a part, a piece of music can be quoted with the @code{\quoteDuring}
5841 command.
5842
5843 @example
5844 \quoteDuring #"clarinet" @{ s2. @}
5845 @end example
5846
5847 This would cite three quarter notes (the duration of @code{s2.})  of
5848 the previously added @code{clarinet} voice.
5849
5850
5851 More precisely, it takes the current time-step of the part being
5852 printed, and extracts the notes at the corresponding point of the
5853 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
5854 should be the entire part of the voice to be quoted, including any
5855 rests at the beginning.
5856
5857 Quotations take into account the transposition of both source and target
5858 instruments, if they are specified using the @code{\transposition} command.
5859
5860 @lilypond[quote,raggedright,verbatim]
5861 \addquote clarinet \relative c' {
5862   \transposition bes
5863   f4 fis g gis
5864 }
5865
5866 {
5867   e'8 f'8 \quoteDuring #"clarinet" { s2 }
5868 }
5869 @end lilypond
5870
5871 The type of events that are present in cue notes can be trimmed with
5872 the @code{quotedEventTypes} property.  The default value is
5873 @code{(note-event rest-event)}, which means that only notes and
5874 rests of the cued voice end up in the @code{\quoteDuring}.
5875 Setting
5876
5877 @example
5878 \set Staff.quotedEventTypes =
5879        #'(note-event articulation-event dynamic-event)
5880 @end example
5881
5882 @noindent
5883 will quote notes (but no rests), together with scripts and dynamics.
5884
5885 @refbugs
5886
5887 Only the contents of the first @internalsref{Voice} occurring in an
5888 @code{\addquote} command will be considered for quotation, so
5889 @var{music} can not contain @code{\new} and @code{\context Voice}
5890 statements that would switch to a different Voice.
5891
5892 Quoting grace notes is broken and can even cause LilyPond to crash.
5893
5894 @seealso
5895
5896 In this manual: @ref{Instrument transpositions}.
5897
5898 Examples: @inputfileref{input/@/regression,quote@/.ly}
5899 @inputfileref{input/@/regression,quote@/-transposition@/.ly}
5900
5901 Program reference: @internalsref{QuoteMusic}.
5902
5903 @node Formatting cue notes
5904 @subsection Formatting cue notes
5905
5906 The previous section deals with inserting notes from another voice.
5907 There is a more advanced music function called @code{\cueDuring},
5908 which makes formatting cue notes easier.
5909
5910 The syntax is
5911
5912 @example
5913   \cueDuring #@var{name} #@var{updown} @var{music}
5914 @end example
5915
5916 This will insert notes from the part @var{name} into a
5917 @internalsref{Voice} called @code{cue}. This happens simultaneously
5918 with @var{music}, which usually is a rest.  When the cue notes start,
5919 the staff in effect becomes polyphonic for a moment. The argument
5920 @var{updown} determines whether the cue notes should be notated as a
5921 first or second voice.
5922
5923
5924 @lilypond[verbatim,raggedright]
5925 smaller = {
5926   \set fontSize = #-2
5927   \override Stem #'length = #5.5
5928   \override Beam #'thickness = #0.384
5929   \override Beam #'space-function =
5930     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
5931 }
5932
5933 \addquote clarinet \relative {
5934   R1*20
5935   r2 r8 c f f
5936
5937
5938 \new Staff \relative  <<
5939
5940   % setup a context for  cue  notes.
5941   \context Voice = cue { \smaller \skip 1*21 }
5942   
5943   \set Score.skipBars = ##t
5944   
5945   \new Voice {
5946     R1*20
5947     \cueDuring #"clarinet" #1 {
5948       R1
5949     }
5950     g4 g2. 
5951   }
5952 >>
5953 @end lilypond 
5954
5955
5956 Here are a couple of hints for successful cue notes
5957
5958 @itemize @bullet
5959 @item
5960 Cue notes have smaller font sizes.
5961 @item
5962  the cued part is marked with the instrument playing the cue.
5963 @item
5964  when the original part takes over again, this should be marked with
5965  the name of the original instrument.
5966
5967  @c really?  Are you sure about that last point?  I'll check after 3.0 -gp
5968
5969 @c Yes, this is good practice. Otherwise, the start of the original
5970 @c part can only be seen from the font size. This is not good enough
5971 @c for sight-reading. It is possilbe to use other
5972 @c markers (eg. a big close-bracket over the staff) to indicate the cue notes are
5973 @c finished.
5974 @c -hwn
5975
5976
5977  any other changes introduced by the cued part should also be
5978 undone. For example, if the cued instrument plays in a different clef,
5979 the original clef should be stated once again.
5980
5981 @end itemize
5982
5983
5984
5985
5986
5987 @node Ancient notation
5988 @section Ancient notation
5989
5990 @cindex Vaticana, Editio
5991 @cindex Medicaea, Editio
5992 @cindex hufnagel
5993 @cindex Petrucci
5994 @cindex mensural
5995
5996 Support for ancient notation includes features for mensural notation
5997 and Gregorian Chant notation.  There is also limited support for
5998 figured bass notation.
5999
6000 Many graphical objects provide a @code{style} property, see
6001 @itemize @bullet
6002 @item
6003 @ref{Ancient note heads},
6004 @item
6005 @ref{Ancient accidentals},
6006 @item
6007 @ref{Ancient rests},
6008 @item
6009 @ref{Ancient clefs},
6010 @item
6011 @ref{Ancient flags},
6012 @item
6013 @ref{Ancient time signatures}.
6014 @end itemize
6015
6016 By manipulating such a grob property, the typographical appearance of
6017 the affected graphical objects can be accommodated for a specific
6018 notation flavor without the need for introducing any new notational
6019 concept.
6020
6021 In addition to the standard articulation signs described in section
6022 @ref{Articulations}, specific articulation signs for ancient notation
6023 are provided.
6024
6025 @itemize @bullet
6026 @item
6027 @ref{Ancient articulations}
6028 @end itemize
6029
6030 Other aspects of ancient notation can not that easily be expressed
6031 in terms of just changing a style property of a graphical object or
6032 adding articulation signs.  Some notational concepts are introduced
6033 specifically for ancient notation,
6034
6035 @itemize @bullet
6036 @item
6037 @ref{Custodes},
6038 @item
6039 @ref{Divisiones},
6040 @item
6041 @ref{Ligatures}.
6042 @end itemize
6043
6044 If this all is too much of documentation for you, and you just want to
6045 dive into typesetting without worrying too much about the details on
6046 how to customize a context, you may have a look at the predefined
6047 contexts.  Use them to set up predefined style-specific voice and
6048 staff contexts, and directly go ahead with the note entry,
6049
6050 @itemize @bullet
6051 @item
6052 @ref{Gregorian Chant contexts},
6053 @item
6054 @ref{Mensural contexts}.
6055 @end itemize
6056
6057 There is limited support for figured bass notation which came
6058 up during the baroque period.
6059
6060 @itemize @bullet
6061 @item
6062 @ref{Figured bass}
6063 @end itemize
6064
6065 Here are all suptopics at a glance:
6066
6067 @menu
6068 * Ancient note heads::          
6069 * Ancient accidentals::         
6070 * Ancient rests::               
6071 * Ancient clefs::               
6072 * Ancient flags::               
6073 * Ancient time signatures::     
6074 * Ancient articulations::       
6075 * Custodes::                    
6076 * Divisiones::                  
6077 * Ligatures::                   
6078 * Gregorian Chant contexts::    
6079 * Mensural contexts::           
6080 * Figured bass::                
6081 @end menu
6082
6083
6084 @node Ancient note heads
6085 @subsection Ancient note heads
6086
6087 @cindex note heads
6088
6089
6090 For ancient notation, a note head style other than the @code{default}
6091 style may be chosen.  This is accomplished by setting the @code{style}
6092 property of the @internalsref{NoteHead} object to @code{baroque},
6093 @code{neomensural} or @code{mensural}.  The @code{baroque} style
6094 differs from the @code{default} style only in using a square shape
6095 for @code{\breve} note heads.  The @code{neomensural} style differs from
6096 the @code{baroque} style in that it uses rhomboidal heads for whole notes
6097 and all smaller durations.  Stems are centered on the note heads.
6098 This style is particularly useful when transcribing mensural music,
6099 e.g., for the incipit.  The @code{mensural} style finally produces note
6100 heads that mimic the look of note heads in historic printings of the
6101 16th century.
6102
6103 The following example demonstrates the @code{neomensural} style
6104
6105 @lilypond[quote,fragment,raggedright,verbatim]
6106 \set Score.skipBars = ##t
6107 \override NoteHead #'style = #'neomensural
6108 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
6109 @end lilypond
6110
6111 When typesetting a piece in Gregorian Chant notation, the
6112 @internalsref{Gregorian_ligature_engraver} will automatically select
6113 the proper note heads, so there is no need to explicitly set the
6114 note head style.  Still, the note head style can be set, e.g., to
6115 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
6116 @internalsref{Mensural_ligature_engraver} is used to automatically
6117 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
6118 engravers work.
6119
6120 @seealso
6121
6122 Examples: @inputfileref{input/@/regression,note@/-head@/-style@/.ly} gives an
6123 overview over all available note head styles.
6124
6125
6126 @node Ancient accidentals
6127 @subsection Ancient accidentals
6128
6129 @cindex accidentals
6130
6131
6132 Use the @code{style} property of grob @internalsref{Accidental} to
6133 select ancient accidentals.   Supported styles are
6134 @code{mensural}, @code{vaticana}, @code{hufnagel}, and @code{medicaea}.
6135
6136 @lilypond[quote,raggedright,staffsize=26]
6137 \score {
6138 {
6139   \fatText
6140   s^\markup {
6141     \column {
6142       "vaticana"
6143       \line { " " \musicglyph #"accidentals-vaticana-1"
6144         " " \musicglyph #"accidentals-vaticana0" }
6145     }
6146     \column {
6147       "medicaea"
6148       \line { " " \musicglyph #"accidentals-medicaea-1" }
6149     }
6150     \column {
6151       "hufnagel"
6152       \line { " " \musicglyph #"accidentals-hufnagel-1" }
6153     }
6154     \column {
6155       "mensural"
6156       \line { " " \musicglyph #"accidentals-mensural-1"
6157         " " \musicglyph #"accidentals-mensural1" }
6158     }
6159   }
6160 }
6161 \layout {
6162   interscoreline = 1
6163   \context { \Score \remove "Bar_number_engraver" }
6164   \context { \Staff
6165       \remove "Clef_engraver"
6166       \remove "Key_engraver"
6167       \remove "Time_signature_engraver"
6168       \remove "Staff_symbol_engraver"
6169       minimumVerticalExtent = ##f
6170     }
6171   }
6172 }
6173 @end lilypond
6174
6175 As shown, not all accidentals are supported by each style.  When
6176 trying to access an unsupported accidental, LilyPond will switch to a
6177 different style, as demonstrated in
6178 @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
6179
6180 Similarly to local accidentals, the style of the key signature can be
6181 controlled by the @code{style} property of the
6182 @internalsref{KeySignature} grob.
6183
6184 @seealso
6185
6186 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
6187 @ref{Accidentals} give a general introduction of the use of
6188 accidentals.  @ref{Key signature} gives a general introduction of
6189 the use of key signatures.
6190
6191 Program reference: @internalsref{KeySignature}.
6192
6193 Examples: @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
6194
6195 @node Ancient rests
6196 @subsection Ancient rests
6197
6198 @cindex rests
6199
6200
6201 Use the @code{style} property of grob @internalsref{Rest} to select
6202 ancient rests.   Supported styles are @code{classical},
6203 @code{neomensural}, and @code{mensural}.  @code{classical} differs
6204 from the @code{default} style only in that the quarter rest looks like
6205 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
6206 well for, e.g., the incipit of a transcribed mensural piece of music.
6207 The @code{mensural} style finally mimics the appearance of rests as
6208 in historic prints of the 16th century.
6209
6210 The following example demonstrates the @code{neomensural} style
6211
6212 @lilypond[quote,fragment,raggedright,verbatim]
6213 \set Score.skipBars = ##t
6214 \override Rest #'style = #'neomensural
6215 r\longa r\breve r1 r2 r4 r8 r16
6216 @end lilypond
6217
6218 There are no 32th and 64th rests specifically for the mensural or
6219 neo-mensural style.  Instead, the rests from the default style will be
6220 taken.  See @inputfileref{input/@/test,rests@/.ly} for a chart of all
6221 rests.
6222
6223 There are no rests in Gregorian Chant notation; instead, it uses
6224 @ref{Divisiones}.
6225
6226 @seealso
6227
6228 In this manual: @ref{Rests} gives a general introduction into the use of rests.
6229
6230
6231 @node Ancient clefs
6232 @subsection Ancient clefs
6233
6234 @cindex clefs
6235
6236
6237 LilyPond supports a variety of clefs, many of them ancient.
6238
6239 The following table shows all ancient clefs that are supported via the
6240 @code{\clef} command.  Some of the clefs use the same glyph, but
6241 differ only with respect to the line they are printed on.  In such
6242 cases, a trailing number in the name is used to enumerate these clefs.
6243 Still, you can manually force a clef glyph to be typeset on an
6244 arbitrary line, as described in @ref{Clef}.  The note printed to the
6245 right side of each clef in the example column denotes the @code{c'}
6246 with respect to that clef.
6247
6248 @multitable @columnfractions .4 .4 .2
6249 @item
6250 @b{Description}
6251 @tab
6252 @b{Supported Clefs}
6253 @tab
6254 @b{Example}
6255
6256 @item
6257 modern style mensural C clef
6258 @tab
6259 @code{neomensural-c1}, @code{neomensural-c2},@*
6260 @code{neomensural-c3}, @code{neomensural-c4}
6261 @tab
6262 @lilypond[fragment,relative=1,notime]
6263   \clef "neomensural-c2" c
6264 @end lilypond
6265
6266 @item
6267 petrucci style mensural C clefs, for use on different staff lines
6268 (the examples show the 2nd staff line C clef)
6269 @tab
6270 @code{petrucci-c1}, @code{petrucci-c2},@*
6271 @code{petrucci-c3}, @code{petrucci-c4},@*
6272 @code{petrucci-c5}
6273 @tab
6274 @lilypond[fragment,relative=1,notime]
6275   \clef "petrucci-c2" c
6276 @end lilypond
6277
6278 @item
6279 petrucci style mensural F clef
6280 @tab
6281 @code{petrucci-f}
6282 @tab
6283 @lilypond[fragment,relative=1,notime]
6284   \clef "petrucci-f" c
6285 @end lilypond
6286
6287 @item
6288 petrucci style mensural G clef
6289 @tab
6290 @code{petrucci-g}
6291 @tab
6292 @lilypond[fragment,relative=1,notime]
6293   \clef "petrucci-g" c
6294 @end lilypond
6295
6296 @item
6297 historic style mensural C clef
6298 @tab
6299 @code{mensural-c1}, @code{mensural-c2},@*
6300 @code{mensural-c3}, @code{mensural-c4}
6301 @tab
6302 @lilypond[fragment,relative=1,notime]
6303   \clef "mensural-c2" c
6304 @end lilypond
6305
6306 @item
6307 historic style mensural F clef
6308 @tab
6309 @code{mensural-f}
6310 @tab
6311 @lilypond[fragment,relative=1,notime]
6312   \clef "mensural-f" c
6313 @end lilypond
6314
6315 @item
6316 historic style mensural G clef
6317 @tab
6318 @code{mensural-g}
6319 @tab
6320 @lilypond[fragment,relative=1,notime]
6321   \clef "mensural-g" c
6322 @end lilypond
6323
6324 @item
6325 Editio Vaticana style do clef
6326 @tab
6327 @code{vaticana-do1}, @code{vaticana-do2},@*
6328 @code{vaticana-do3}
6329 @tab
6330 @lilypond[fragment,relative=1,notime]
6331   \override Staff.StaffSymbol #'line-count = #4
6332   \clef "vaticana-do2" c
6333 @end lilypond
6334
6335 @item
6336 Editio Vaticana style fa clef
6337 @tab
6338 @code{vaticana-fa1}, @code{vaticana-fa2}
6339 @tab
6340 @lilypond[fragment,relative=1,notime]
6341   \override Staff.StaffSymbol #'line-count = #4
6342   \clef "vaticana-fa2" c
6343 @end lilypond
6344
6345 @item
6346 Editio Medicaea style do clef
6347 @tab
6348 @code{medicaea-do1}, @code{medicaea-do2},@*
6349 @code{medicaea-do3}
6350 @tab
6351 @lilypond[fragment,relative=1,notime]
6352   \override Staff.StaffSymbol #'line-count = #4
6353   \clef "medicaea-do2" c
6354 @end lilypond
6355
6356 @item
6357 Editio Medicaea style fa clef
6358 @tab
6359 @code{medicaea-fa1}, @code{medicaea-fa2}
6360 @tab
6361 @lilypond[fragment,relative=1,notime]
6362   \override Staff.StaffSymbol #'line-count = #4
6363   \clef "medicaea-fa2" c
6364 @end lilypond
6365
6366 @item
6367 historic style hufnagel do clef
6368 @tab
6369 @code{hufnagel-do1}, @code{hufnagel-do2},@*
6370 @code{hufnagel-do3}
6371 @tab
6372 @lilypond[fragment,relative=1,notime]
6373   \override Staff.StaffSymbol #'line-count = #4
6374   \clef "hufnagel-do2" c
6375 @end lilypond
6376
6377 @item
6378 historic style hufnagel fa clef
6379 @tab
6380 @code{hufnagel-fa1}, @code{hufnagel-fa2}
6381 @tab
6382 @lilypond[fragment,relative=1,notime]
6383   \override Staff.StaffSymbol #'line-count = #4
6384   \clef "hufnagel-fa2" c
6385 @end lilypond
6386
6387 @item
6388 historic style hufnagel combined do/fa clef
6389 @tab
6390 @code{hufnagel-do-fa}
6391 @tab
6392 @lilypond[fragment,relative=1,notime]
6393   \clef "hufnagel-do-fa" c
6394 @end lilypond
6395 @end multitable
6396
6397
6398
6399 @emph{Modern style} means ``as is typeset in contemporary editions of
6400 transcribed mensural music''.
6401
6402 @emph{Petrucci style} means ``inspired by printings published by the
6403 famous engraver Petrucci (1466-1539)''.
6404
6405 @emph{Historic style} means ``as was typeset or written in historic
6406 editions (other than those of Petrucci)''.
6407
6408 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
6409
6410 Petrucci used C clefs with differently balanced left-side vertical
6411 beams, depending on which staff line it is printed.
6412
6413 @seealso
6414
6415 In this manual: see @ref{Clef}.
6416
6417 @refbugs
6418
6419 The mensural g clef is mapped to the Petrucci g clef.
6420
6421
6422
6423 @node Ancient flags
6424 @subsection Ancient flags
6425
6426 @cindex flags
6427
6428
6429 Use the @code{flag-style} property of grob @internalsref{Stem} to
6430 select ancient flags.  Besides the @code{default} flag style,
6431 only the @code{mensural} style is supported
6432
6433 @lilypond[quote,fragment,raggedright,verbatim]
6434 \override Stem #'flag-style = #'mensural
6435 \override Stem #'thickness = #1.0
6436 \override NoteHead #'style = #'mensural
6437 \autoBeamOff
6438 c'8 d'8 e'8 f'8 c'16 d'16 e'16 f'16 c'32 d'32 e'32 f'32 s8
6439 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
6440 @end lilypond
6441
6442 Note that the innermost flare of each mensural flag always is
6443 vertically aligned with a staff line.
6444
6445 There is no particular flag style for neo-mensural notation.  Hence,
6446 when typesetting the incipit of a transcribed piece of mensural
6447 music, the default flag style should be used.  There are no flags in
6448 Gregorian Chant notation.
6449
6450 @refbugs
6451
6452 The attachment of ancient flags to stems is slightly off due to a
6453 change in early 2.3.x.
6454
6455 Vertically aligning each flag with a staff line assumes that stems
6456 always end either exactly on or exactly in the middle between two
6457 staff lines.  This may not always be true when using advanced layout
6458 features of classical notation (which however are typically out of
6459 scope for mensural notation).
6460
6461 @node Ancient time signatures
6462 @subsection Ancient time signatures
6463
6464 @cindex time signatures
6465
6466
6467 There is limited support for mensural time signatures.   The
6468 glyphs are hard-wired to particular time fractions.  In other words,
6469 to get a particular mensural signature glyph with the @code{\time n/m}
6470 command, @code{n} and @code{m} have to be chosen according to the
6471 following table
6472
6473 @lilypond[quote,raggedright]
6474 \layout {
6475   indent = 0.0
6476   \context { \Staff
6477     \remove Staff_symbol_engraver
6478     \remove Clef_engraver
6479     \remove Time_signature_engraver
6480   }
6481 } {
6482   \set Score.timing = ##f
6483   \set Score.barAlways = ##t
6484   s_\markup { "$\\backslash$time 4/4" }
6485   ^\markup { "       " \musicglyph #"timesig-neomensural4/4" }
6486   s
6487   s_\markup { "$\\backslash$time 2/2" }
6488   ^\markup { "       " \musicglyph #"timesig-neomensural2/2" }
6489   s
6490   s_\markup { "$\\backslash$time 6/4" }
6491   ^\markup { "       " \musicglyph #"timesig-neomensural6/4" }
6492   s
6493   s_\markup { "$\\backslash$time 6/8" }
6494   ^\markup { "       " \musicglyph #"timesig-neomensural6/8" }
6495   \break
6496   s_\markup { "$\\backslash$time 3/2" }
6497   ^\markup { "       " \musicglyph #"timesig-neomensural3/2" }
6498   s
6499   s_\markup { "$\\backslash$time 3/4" }
6500   ^\markup { "       " \musicglyph #"timesig-neomensural3/4" }
6501   s
6502   s_\markup { "$\\backslash$time 9/4" }
6503   ^\markup { "       " \musicglyph #"timesig-neomensural9/4" }
6504   s
6505   s_\markup { "$\\backslash$time 9/8" }
6506   ^\markup { "       " \musicglyph #"timesig-neomensural9/8" }
6507   \break
6508   s_\markup { "$\\backslash$time 4/8" }
6509   ^\markup { "       " \musicglyph #"timesig-neomensural4/8" }
6510   s
6511   s_\markup { "$\\backslash$time 2/4" }
6512   ^\markup { "       " \musicglyph #"timesig-neomensural2/4" }
6513 }
6514 @end lilypond
6515
6516 Use the @code{style} property of grob @internalsref{TimeSignature} to
6517 select ancient time signatures.  Supported styles are
6518 @code{neomensural} and @code{mensural}.  The above table uses the
6519 @code{neomensural} style.  This style is appropriate for the
6520 incipit of transcriptions of mensural pieces.  The @code{mensural}
6521 style mimics the look of historical printings of the 16th century.
6522
6523 The following examples show the differences in style,
6524
6525 @lilypond[raggedright,fragment,relative=1,quote]
6526 {
6527   \fatText
6528   \time 2/2
6529   c1^\markup { \hspace #-2.0 \typewriter default }
6530
6531   \override Staff.TimeSignature #'style = #'numbered
6532   \time 2/2
6533   c1^\markup { \hspace #-2.0 \typewriter numbered }
6534
6535   \override Staff.TimeSignature #'style = #'mensural
6536   \time 2/2
6537   c1^\markup { \hspace #-2.0 \typewriter mensural }
6538
6539   \override Staff.TimeSignature #'style = #'neomensural
6540   \time 2/2
6541   c1^\markup { \hspace #-2.0 \typewriter neomensural }
6542   \override Staff.TimeSignature #'style = #'single-digit
6543   \time 2/2
6544   c1^\markup { \hspace #-2.0 \typewriter single-digit }
6545 }
6546 @end lilypond
6547
6548 @seealso
6549
6550 This manual: @ref{Time signature} gives a general introduction to
6551 the use of time signatures.
6552
6553 @refbugs
6554
6555 Ratios of note durations do not change with the time signature.  For
6556 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
6557 be made by hand, by setting
6558
6559 @example
6560 breveTP = #(ly:make-duration -1 0 3 2)
6561 @dots{}
6562 @{ c\breveTP f1 @}
6563 @end example
6564
6565 @noindent
6566 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
6567
6568 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
6569 addressable with @code{\time}.  Use a @code{\markup} instead
6570
6571 @node Ancient articulations
6572 @subsection Ancient articulations
6573
6574 @cindex articulations
6575
6576 In addition to the standard articulation signs described in section
6577 @ref{Articulations}, articulation signs for ancient notation are
6578 provided.  These are specifically designed for use with notation in
6579 Editio Vaticana style.
6580
6581 @lilypond[quote,raggedright,verbatim]
6582 \include "gregorian-init.ly"
6583 \score {
6584   \context VaticanaVoice {
6585     \override TextScript #'font-family = #'typewriter
6586     \override TextScript #'font-shape = #'upright
6587     \override Script #'padding = #-0.1
6588     a4\ictus_"ictus" s1
6589     a4\circulus_"circulus" s1
6590     a4\semicirculus_"semicirculus" s1 s
6591     a4\accentus_"accentus" s1
6592     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
6593   }
6594 }
6595 @end lilypond
6596
6597 @refbugs
6598
6599 Some articulations are vertically placed too closely to the
6600 correpsonding note heads.
6601
6602 @node Custodes
6603 @subsection Custodes
6604
6605 @cindex custos
6606 @cindex custodes
6607
6608 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
6609 symbol that appears at the end of a staff.  It anticipates the pitch
6610 of the first note(s) of the following line thus helping the performer
6611 to manage line breaks during performance.
6612
6613 Custodes were frequently used in music notation until the 17th
6614 century.  Nowadays, they have survived only in a few particular forms
6615 of musical notation such as contemporary editions of Gregorian chant
6616 like the @emph{editio vaticana}.  There are different custos glyphs
6617 used in different flavors of notational style.
6618
6619 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
6620 @internalsref{Staff} context when declaring the @code{\layout} block,
6621 as shown in the following example
6622
6623 @example
6624 \layout @{
6625   \context @{
6626     \Staff
6627     \consists Custos_engraver
6628     Custos \override #'style = #'mensural
6629   @}
6630 @}
6631 @end example
6632
6633 The result looks like this
6634
6635 @lilypond[quote,raggedright]
6636 \score {
6637 {
6638   a'1
6639   \override Staff.Custos #'style = #'mensural
6640   \break
6641   g'
6642 }
6643 \layout {
6644   \context { \Staff \consists Custos_engraver }
6645   }
6646 }
6647 @end lilypond
6648
6649 The custos glyph is selected by the @code{style} property.  The styles
6650 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel}, and
6651 @code{mensural}.  They are demonstrated in the following fragment
6652
6653 @lilypond[quote,raggedright,fragment]
6654 \new Lyrics \lyricmode {
6655   \markup { \column {
6656     \typewriter "vaticana"
6657     \line { " " \musicglyph #"custodes-vaticana-u0" }
6658   } }
6659   \markup { \column {
6660     \typewriter "medicaea"
6661     \line { " " \musicglyph #"custodes-medicaea-u0" }
6662   }}
6663   \markup { \column {
6664     \typewriter "hufnagel"
6665     \line { " " \musicglyph #"custodes-hufnagel-u0" }
6666   }}
6667   \markup { \column {
6668     \typewriter "mensural"
6669     \line { " " \musicglyph #"custodes-mensural-u0" }
6670   }}
6671 }
6672 @end lilypond
6673
6674 @seealso
6675
6676 Program reference: @internalsref{Custos}.
6677
6678 Examples: @inputfileref{input/@/regression,custos@/.ly}.
6679
6680
6681 @node Divisiones
6682 @subsection Divisiones
6683
6684 @cindex divisio
6685 @cindex divisiones
6686 @cindex finalis
6687
6688 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
6689 `division') is a staff context symbol that is used to structure
6690 Gregorian music into phrases and sections.  The musical meaning of
6691 @emph{divisio minima}, @emph{divisio maior}, and @emph{divisio maxima}
6692 can be characterized as short, medium, and long pause, somewhat like
6693 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
6694 only marks the end of a chant, but is also frequently used within a
6695 single antiphonal/responsorial chant to mark the end of each section.
6696
6697
6698 To use divisiones, include the file @file{gregorian@/-init@/.ly}.  It
6699 contains definitions that you can apply by just inserting
6700 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
6701 and @code{\finalis} at proper places in the input.  Some editions use
6702 @emph{virgula} or @emph{caesura} instead of divisio minima.
6703 Therefore, @file{gregorian@/-init@/.ly} also defines @code{\virgula} and
6704 @code{\caesura}
6705
6706 @lilypondfile[quote,raggedright]{divisiones.ly}
6707
6708 @refcommands
6709
6710 @cindex @code{\virgula}
6711 @code{\virgula},
6712 @cindex @code{\caesura}
6713 @code{\caesura},
6714 @cindex @code{\divisioMinima}
6715 @code{\divisioMinima},
6716 @cindex @code{\divisioMaior}
6717 @code{\divisioMaior},
6718 @cindex @code{\divisioMaxima}
6719 @code{\divisioMaxima},
6720 @cindex @code{\finalis}
6721 @code{\finalis}.
6722
6723 @seealso
6724
6725 In this manual: @ref{Breath marks}.
6726
6727 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
6728
6729 Examples: @inputfileref{input/@/test,divisiones@/.ly}.
6730
6731 @node Ligatures
6732 @subsection Ligatures
6733
6734 @cindex Ligatures
6735
6736 @c TODO: Should double check if I recalled things correctly when I wrote
6737 @c down the following paragraph by heart.
6738
6739 A ligature is a graphical symbol that represents at least two distinct
6740 notes.  Ligatures originally appeared in the manuscripts of Gregorian
6741 chant notation to denote ascending or descending sequences of notes.
6742
6743 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
6744 Some ligature styles may need additional input syntax specific for
6745 this particular type of ligature.  By default, the
6746 @internalsref{LigatureBracket} engraver just puts a square bracket
6747 above the ligature
6748
6749 @lilypond[quote,raggedright,verbatim]
6750 \transpose c c' {
6751   \[ g c a f d' \]
6752   a g f
6753   \[ e f a g \]
6754 }
6755 @end lilypond
6756
6757 To select a specific style of ligatures, a proper ligature engraver
6758 has to be added to the @internalsref{Voice} context, as explained in
6759 the following subsections.   Only white mensural ligatures
6760 are supported with certain limitations.
6761
6762
6763
6764 @refbugs
6765
6766 Ligatures need special spacing that has not yet been implemented.  As
6767 a result, there is too much space between ligatures most of the time,
6768 and line breaking often is unsatisfactory.  Also, lyrics do not
6769 correctly align with ligatures.
6770
6771 Accidentals must not be printed within a ligature, but instead need to
6772 be collected and printed in front of it.
6773
6774 Augmentum dots within ligatures are not handled correctly.
6775
6776
6777 @menu
6778 * White mensural ligatures::    
6779 * Gregorian square neumes ligatures::  
6780 @end menu
6781
6782 @node White mensural ligatures
6783 @subsubsection White mensural ligatures
6784
6785 @cindex Mensural ligatures
6786 @cindex White mensural ligatures
6787
6788 There is limited support for white mensural ligatures.
6789
6790 To engrave white mensural ligatures, in the layout block put the
6791 @internalsref{Mensural_ligature_engraver} into the
6792 @internalsref{Voice} context, and remove the
6793 @internalsref{Ligature_bracket_engraver}, like this
6794
6795 @example
6796 \layout @{
6797   \context @{
6798     \Voice
6799     \remove Ligature_bracket_engraver
6800     \consists Mensural_ligature_engraver
6801   @}
6802 @}
6803 @end example
6804
6805 There is no additional input language to describe the shape of a
6806 white mensural ligature.  The shape is rather determined solely from
6807 the pitch and duration of the enclosed notes.  While this approach may
6808 take a new user a while to get accustomed to, it has the great advantage
6809 that the full musical information of the ligature is known internally.
6810 This is not only required for correct MIDI output, but also allows for
6811 automatic transcription of the ligatures.
6812
6813 For example,
6814
6815 @example
6816 \set Score.timing = ##f
6817 \set Score.defaultBarType = "empty"
6818 \override NoteHead #'style = #'neomensural
6819 \override Staff.TimeSignature #'style = #'neomensural
6820 \clef "petrucci-g"
6821 \[ g\longa c\breve a\breve f\breve d'\longa \]
6822 s4
6823 \[ e1 f1 a\breve g\longa \]
6824 @end example
6825 @lilypond[quote,raggedright]
6826 \score {
6827   \transpose c c' {
6828     \set Score.timing = ##f
6829     \set Score.defaultBarType = "empty"
6830     \override NoteHead #'style = #'neomensural
6831     \override Staff.TimeSignature #'style = #'neomensural
6832     \clef "petrucci-g"
6833     \[ g\longa c\breve a\breve f\breve d'\longa \]
6834     s4
6835     \[ e1 f1 a\breve g\longa \]
6836   }
6837   \layout {
6838     \context {
6839       \Voice
6840       \remove Ligature_bracket_engraver
6841       \consists Mensural_ligature_engraver
6842     }
6843   }
6844 }
6845 @end lilypond
6846
6847 Without replacing @internalsref{Ligature_bracket_engraver} with
6848 @internalsref{Mensural_ligature_engraver}, the same music transcribes
6849 to the following
6850
6851 @lilypond[quote,raggedright]
6852 \transpose c c' {
6853   \set Score.timing = ##f
6854   \set Score.defaultBarType = "empty"
6855   \override NoteHead #'style = #'neomensural
6856   \override Staff.TimeSignature #'style = #'neomensural
6857   \clef "petrucci-g"
6858   \[ g\longa c\breve a\breve f\breve d'\longa \]
6859   s4
6860   \[ e1 f1 a\breve g\longa \]
6861 }
6862 @end lilypond
6863
6864 @refbugs
6865
6866 The implementation is experimental.  It may output strange warnings,
6867 incorrect results, and might even crash on more complex ligatures.
6868
6869 @node Gregorian square neumes ligatures
6870 @subsubsection Gregorian square neumes ligatures
6871
6872 @cindex Square neumes ligatures
6873 @cindex Gregorian square neumes ligatures
6874
6875 There is limited support for Gregorian square neumes notation
6876 (following the style of the Editio Vaticana).  Core ligatures can
6877 already be typeset, but essential issues for serious typesetting are
6878 still lacking, such as (among others) horizontal alignment of multiple
6879 ligatures, lyrics alignment and proper handling of accidentals.
6880
6881
6882 The following table contains the extended neumes table of the 2nd
6883 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
6884 1983 by the monks of Solesmes.
6885
6886 @multitable @columnfractions .4 .2 .2 .2
6887
6888 @item
6889 @b{Neuma aut@*
6890 Neumarum Elementa}
6891 @tab
6892 @b{Figurae@*
6893 Rectae}
6894 @tab
6895 @b{Figurae@*
6896 Liquescentes@*
6897 Auctae}
6898 @tab
6899 @b{Figurae@*
6900 Liquescentes@*
6901 Deminutae}
6902
6903 @c TODO: \layout block is identical in all of the below examples.
6904 @c Therefore, it should somehow be included rather than duplicated all
6905 @c the time. --jr
6906
6907 @c why not make identifiers in ly/engraver-init.ly? --hwn
6908
6909 @c Because it's just used to typeset plain notes without
6910 @c a staff for demonstration purposes rather than something
6911 @c special of Gregorian chant notation. --jr
6912
6913 @item
6914 @code{1. Punctum}
6915 @tab
6916 @lilypond[staffsize=26,linewidth=1.5\cm]
6917 \include "gregorian-init.ly"
6918 \score {
6919   \transpose c c' {
6920     % Punctum
6921     \[ b \]
6922     \noBreak s^\markup {"a"} \noBreak
6923
6924     % Punctum Inclinatum
6925     \[ \inclinatum b \]
6926     \noBreak s^\markup {"b"}
6927   }
6928 \layout { \neumeDemoLayout }}
6929 @end lilypond
6930 @tab
6931 @lilypond[staffsize=26,linewidth=2.5\cm]
6932 \include "gregorian-init.ly"
6933 \score {
6934   \transpose c c' {
6935     % Punctum Auctum Ascendens
6936     \[ \auctum \ascendens b \]
6937     \noBreak s^\markup {"c"} \noBreak
6938
6939     % Punctum Auctum Descendens
6940     \[ \auctum \descendens b \]
6941     \noBreak s^\markup {"d"} \noBreak
6942
6943     % Punctum Inclinatum Auctum
6944     \[ \inclinatum \auctum b \]
6945     \noBreak s^\markup {"e"}
6946   }
6947 \layout { \neumeDemoLayout }}
6948 @end lilypond
6949 @tab
6950 @lilypond[staffsize=26,linewidth=1.0\cm]
6951 \include "gregorian-init.ly"
6952 \score {
6953   \transpose c c' {
6954     % Punctum Inclinatum Parvum
6955     \[ \inclinatum \deminutum b \]
6956     \noBreak s^\markup {"f"}
6957   }
6958 \layout { \neumeDemoLayout }}
6959 @end lilypond
6960
6961 @item
6962 @code{2. Virga}
6963 @tab
6964 @lilypond[staffsize=26,linewidth=1.0\cm]
6965 \include "gregorian-init.ly"
6966 \score {
6967   \transpose c c' {
6968     % Virga
6969     \[ \virga b \]
6970     \noBreak s^\markup {"g"}
6971   }
6972 \layout { \neumeDemoLayout }}
6973 @end lilypond
6974 @tab
6975 @tab
6976
6977 @item
6978 @code{3. Apostropha vel Stropha}
6979 @tab
6980 @lilypond[staffsize=26,linewidth=1.0\cm]
6981 \include "gregorian-init.ly"
6982 \score {
6983   \transpose c c' {
6984     % Stropha
6985     \[ \stropha b \]
6986     \noBreak s^\markup {"h"}
6987   }
6988 \layout { \neumeDemoLayout }}
6989 @end lilypond
6990 @tab
6991 @lilypond[staffsize=26,linewidth=1.0\cm]
6992 \include "gregorian-init.ly"
6993 \score {
6994   \transpose c c' {
6995     % Stropha Aucta
6996     \[ \stropha \auctum b \]
6997     \noBreak s^\markup {"i"}
6998   }
6999 \layout { \neumeDemoLayout }}
7000 @end lilypond
7001 @tab
7002
7003 @item
7004 @code{4. Oriscus}
7005 @tab
7006 @lilypond[staffsize=26,linewidth=1.0\cm]
7007 \include "gregorian-init.ly"
7008 \score {
7009   \transpose c c' {
7010     % Oriscus
7011     \[ \oriscus b \]
7012     \noBreak s^\markup {"j"}
7013   }
7014 \layout { \neumeDemoLayout }}
7015 @end lilypond
7016 @tab
7017 @tab
7018
7019 @item
7020 @code{5. Clivis vel Flexa}
7021 @tab
7022 @lilypond[staffsize=26,linewidth=1.0\cm]
7023 \include "gregorian-init.ly"
7024 \score {
7025   \transpose c c' {
7026     % Clivis vel Flexa
7027     \[ b \flexa g \]
7028     s^\markup {"k"}
7029   }
7030 \layout { \neumeDemoLayout }}
7031 @end lilypond
7032 @tab
7033 @lilypond[staffsize=26,linewidth=2.0\cm]
7034 \include "gregorian-init.ly"
7035 \score {
7036   \transpose c c' {
7037     % Clivis Aucta Descendens
7038     \[ b \flexa \auctum \descendens g \]
7039     \noBreak s^\markup {"l"} \noBreak
7040
7041     % Clivis Aucta Ascendens
7042     \[ b \flexa \auctum \ascendens g \]
7043     \noBreak s^\markup {"m"}
7044   }
7045 \layout { \neumeDemoLayout }}
7046 @end lilypond
7047 @tab
7048 @lilypond[staffsize=26,linewidth=1.0\cm]
7049 \include "gregorian-init.ly"
7050 \score {
7051   \transpose c c' {
7052     % Cephalicus
7053     \[ b \flexa \deminutum g \]
7054     s^\markup {"n"}
7055   }
7056 \layout { \neumeDemoLayout }}
7057 @end lilypond
7058
7059 @item
7060 @code{6. Podatus vel Pes}
7061 @tab
7062 @lilypond[staffsize=26,linewidth=1.0\cm]
7063 \include "gregorian-init.ly"
7064 \score {
7065   \transpose c c' {
7066     % Podatus vel Pes
7067     \[ g \pes b \]
7068     s^\markup {"o"}
7069   }
7070 \layout { \neumeDemoLayout }}
7071 @end lilypond
7072 @tab
7073 @lilypond[staffsize=26,linewidth=2.0\cm]
7074 \include "gregorian-init.ly"
7075 \score {
7076   \transpose c c' {
7077     % Pes Auctus Descendens
7078     \[ g \pes \auctum \descendens b \]
7079     \noBreak s^\markup {"p"} \noBreak
7080
7081     % Pes Auctus Ascendens
7082     \[ g \pes \auctum \ascendens b \]
7083     \noBreak s^\markup {"q"}
7084   }
7085 \layout { \neumeDemoLayout }}
7086 @end lilypond
7087 @tab
7088 @lilypond[staffsize=26,linewidth=1.0\cm]
7089 \include "gregorian-init.ly"
7090 \score {
7091   \transpose c c' {
7092     % Epiphonus
7093     \[ g \pes \deminutum b \]
7094     s^\markup {"r"}
7095   }
7096 \layout { \neumeDemoLayout }}
7097 @end lilypond
7098
7099 @item
7100 @code{7. Pes Quassus}
7101 @tab
7102 @lilypond[staffsize=26,linewidth=1.0\cm]
7103 \include "gregorian-init.ly"
7104 \score {
7105   \transpose c c' {
7106     % Pes Quassus
7107     \[ \oriscus g \pes \virga b \]
7108     s^\markup {"s"}
7109   }
7110 \layout { \neumeDemoLayout }}
7111 @end lilypond
7112 @tab
7113 @lilypond[staffsize=26,linewidth=1.0\cm]
7114 \include "gregorian-init.ly"
7115 \score {
7116   \transpose c c' {
7117     % Pes Quassus Auctus Descendens
7118     \[ \oriscus g \pes \auctum \descendens b \]
7119     s^\markup {"t"}
7120   }
7121 \layout { \neumeDemoLayout }}
7122 @end lilypond
7123 @tab
7124
7125 @item
7126 @code{8. Quilisma Pes}
7127 @tab
7128 @lilypond[staffsize=26,linewidth=1.0\cm]
7129 \include "gregorian-init.ly"
7130 \score {
7131   \transpose c c' {
7132     % Quilisma Pes
7133     \[ \quilisma g \pes b \]
7134     s^\markup {"u"}
7135   }
7136 \layout { \neumeDemoLayout }}
7137 @end lilypond
7138 @tab
7139 @lilypond[staffsize=26,linewidth=1.0\cm]
7140 \include "gregorian-init.ly"
7141 \score {
7142   \transpose c c' {
7143     % Quilisma Pes Auctus Descendens
7144     \[ \quilisma g \pes \auctum \descendens b \]
7145     s^\markup {"v"}
7146   }
7147 \layout { \neumeDemoLayout }}
7148 @end lilypond
7149 @tab
7150
7151 @item
7152 @code{9. Podatus Initio Debilis}
7153 @tab
7154 @lilypond[staffsize=26,linewidth=1.0\cm]
7155 \include "gregorian-init.ly"
7156 \score {
7157   \transpose c c' {
7158     % Pes Initio Debilis
7159     \[ \deminutum g \pes b \]
7160     s^\markup {"w"}
7161   }
7162 \layout { \neumeDemoLayout }}
7163 @end lilypond
7164 @tab
7165 @lilypond[staffsize=26,linewidth=1.0\cm]
7166 \include "gregorian-init.ly"
7167 \score {
7168   \transpose c c' {
7169     % Pes Auctus Descendens Initio Debilis
7170     \[ \deminutum g \pes \auctum \descendens b \]
7171     s^\markup {"x"}
7172   }
7173 \layout { \neumeDemoLayout }}
7174 @end lilypond
7175 @tab
7176
7177 @item
7178 @code{10. Torculus}
7179 @tab
7180 @lilypond[staffsize=26,linewidth=1.0\cm]
7181 \include "gregorian-init.ly"
7182 \score {
7183   \transpose c c' {
7184     % Torculus
7185     \[ a \pes b \flexa g \]
7186     s^\markup {"y"}
7187   }
7188 \layout { \neumeDemoLayout }}
7189 @end lilypond
7190 @tab
7191 @lilypond[staffsize=26,linewidth=1.0\cm]
7192 \include "gregorian-init.ly"
7193 \score {
7194   \transpose c c' {
7195     % Torculus Auctus Descendens
7196     \[ a \pes b \flexa \auctum \descendens g \]
7197     s^\markup {"z"}
7198   }
7199 \layout { \neumeDemoLayout }}
7200 @end lilypond
7201 @tab
7202 @lilypond[staffsize=26,linewidth=1.0\cm]
7203 \include "gregorian-init.ly"
7204 \score {
7205   \transpose c c' {
7206     % Torculus Deminutus
7207     \[ a \pes b \flexa \deminutum g \]
7208     s^\markup {"A"}
7209   }
7210 \layout { \neumeDemoLayout }}
7211 @end lilypond
7212
7213 @item
7214 @code{11. Torculus Initio Debilis}
7215 @tab
7216 @lilypond[staffsize=26,linewidth=1.0\cm]
7217 \include "gregorian-init.ly"
7218 \score {
7219   \transpose c c' {
7220     % Torculus Initio Debilis
7221     \[ \deminutum a \pes b \flexa g \]
7222     s^\markup {"B"}
7223   }
7224 \layout { \neumeDemoLayout }}
7225 @end lilypond
7226 @tab
7227 @lilypond[staffsize=26,linewidth=1.0\cm]
7228 \include "gregorian-init.ly"
7229 \score {
7230   \transpose c c' {
7231     % Torculus Auctus Descendens Initio Debilis
7232     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
7233     s^\markup {"C"}
7234   }
7235 \layout { \neumeDemoLayout }}
7236 @end lilypond
7237 @tab
7238 @lilypond[staffsize=26,linewidth=1.0\cm]
7239 \include "gregorian-init.ly"
7240 \score {
7241   \transpose c c' {
7242     % Torculus Deminutus Initio Debilis
7243     \[ \deminutum a \pes b \flexa \deminutum g \]
7244     s^\markup {"D"}
7245   }
7246 \layout { \neumeDemoLayout }}
7247 @end lilypond
7248
7249 @item
7250 @code{12. Porrectus}
7251 @tab
7252 @lilypond[staffsize=26,linewidth=1.0\cm]
7253 \include "gregorian-init.ly"
7254 \score {
7255   \transpose c c' {
7256     % Porrectus
7257     \[ a \flexa g \pes b \]
7258     s^\markup {"E"}
7259   }
7260 \layout { \neumeDemoLayout }}
7261 @end lilypond
7262 @tab
7263 @lilypond[staffsize=26,linewidth=1.0\cm]
7264 \include "gregorian-init.ly"
7265 \score {
7266   \transpose c c' {
7267     % Porrectus Auctus Descendens
7268     \[ a \flexa g \pes \auctum \descendens b \]
7269     s^\markup {"F"}
7270   }
7271 \layout { \neumeDemoLayout }}
7272 @end lilypond
7273 @tab
7274 @lilypond[staffsize=26,linewidth=1.0\cm]
7275 \include "gregorian-init.ly"
7276 \score {
7277   \transpose c c' {
7278     % Porrectus Deminutus
7279     \[ a \flexa g \pes \deminutum b \]
7280     s^\markup {"G"}
7281   }
7282 \layout { \neumeDemoLayout }}
7283 @end lilypond
7284
7285 @item
7286 @code{13. Climacus}
7287 @tab
7288 @lilypond[staffsize=26,linewidth=1.0\cm]
7289 \include "gregorian-init.ly"
7290 \score {
7291   \transpose c c' {
7292     % Climacus
7293     \[ \virga b \inclinatum a \inclinatum g \]
7294     s^\markup {"H"}
7295   }
7296   \layout { \neumeDemoLayout }
7297 }
7298 @end lilypond
7299 @tab
7300 @lilypond[staffsize=26,linewidth=1.0\cm]
7301 \include "gregorian-init.ly"
7302 \score {
7303   \transpose c c' {
7304     % Climacus Auctus
7305     \[ \virga b \inclinatum a \inclinatum \auctum g \]
7306     s^\markup {"I"}
7307   }
7308 \layout { \neumeDemoLayout }}
7309 @end lilypond
7310 @tab
7311 @lilypond[staffsize=26,linewidth=1.0\cm]
7312 \include "gregorian-init.ly"
7313 \score {
7314   \transpose c c' {
7315     % Climacus Deminutus
7316     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
7317     s^\markup {"J"}
7318   }
7319 \layout { \neumeDemoLayout }}
7320 @end lilypond
7321
7322 @item
7323 @code{14. Scandicus}
7324 @tab
7325 @lilypond[staffsize=26,linewidth=1.0\cm]
7326 \include "gregorian-init.ly"
7327 \score {
7328   \transpose c c' {
7329     % Scandicus
7330     \[ g \pes a \virga b \]
7331     s^\markup {"K"}
7332   }
7333 \layout { \neumeDemoLayout }}
7334 @end lilypond
7335 @tab
7336 @lilypond[staffsize=26,linewidth=1.0\cm]
7337 \include "gregorian-init.ly"
7338 \score {
7339   \transpose c c' {
7340     % Scandicus Auctus Descendens
7341     \[ g \pes a \pes \auctum \descendens b \]
7342     s^\markup {"L"}
7343   }
7344 \layout { \neumeDemoLayout }}
7345 @end lilypond
7346 @tab
7347 @lilypond[staffsize=26,linewidth=1.0\cm]
7348 \include "gregorian-init.ly"
7349 \score {
7350   \transpose c c' {
7351     % Scandicus Deminutus
7352     \[ g \pes a \pes \deminutum b \]
7353     s^\markup {"M"}
7354   }
7355 \layout { \neumeDemoLayout }}
7356 @end lilypond
7357
7358 @item
7359 @code{15. Salicus}
7360 @tab
7361 @lilypond[staffsize=26,linewidth=1.0\cm]
7362 \include "gregorian-init.ly"
7363 \score {
7364   \transpose c c' {
7365     % Salicus
7366     \[ g \oriscus a \pes \virga b \]
7367     s^\markup {"N"}
7368   }
7369 \layout { \neumeDemoLayout }}
7370 @end lilypond
7371 @tab
7372 @lilypond[staffsize=26,linewidth=1.0\cm]
7373 \include "gregorian-init.ly"
7374 \score {
7375   \transpose c c' {
7376     % Salicus Auctus Descendens
7377     \[ g \oriscus a \pes \auctum \descendens b \]
7378     s^\markup {"O"}
7379   }
7380 \layout { \neumeDemoLayout }}
7381 @end lilypond
7382 @tab
7383
7384 @item
7385 @code{16. Trigonus}
7386 @tab
7387 @lilypond[staffsize=26,linewidth=1.0\cm]
7388 \include "gregorian-init.ly"
7389 \score {
7390   \transpose c c' {
7391     % Trigonus
7392     \[ \stropha b \stropha b \stropha a \]
7393     s^\markup {"P"}
7394   }
7395   \layout { \neumeDemoLayout }
7396 }
7397 @end lilypond
7398 @tab
7399 @tab
7400
7401 @end multitable
7402
7403
7404 Unlike most other neumes notation systems, the input language for
7405 neumes does not reflect the typographical appearance, but is designed
7406 to focus on musical meaning.  For example, @code{\[ a \pes b
7407 \flexa g \]} produces a Torculus consisting of three Punctum heads,
7408 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
7409 curved flexa shape and only a single Punctum head.  There is no
7410 command to explicitly typeset the curved flexa shape; the decision of
7411 when to typeset a curved flexa shape is based on the musical
7412 input.  The idea of this approach is to separate the musical aspects
7413 of the input from the notation style of the output.  This way, the
7414 same input can be reused to typeset the same music in a different
7415 style of Gregorian chant notation.
7416
7417 The following table shows the code fragments that produce the
7418 ligatures in the above neumes table.  The letter in the first column
7419 in each line of the below table indicates to which ligature in the
7420 above table it refers.  The second column gives the name of the
7421 ligature.  The third column shows the code fragment that produces this
7422 ligature, using @code{g}, @code{a}, and @code{b} as example pitches.
7423
7424 @multitable @columnfractions .02 .31 .67
7425 @item
7426 @b{#}
7427 @tab
7428 @b{Name}
7429 @tab
7430 @b{Input Language}
7431
7432 @item
7433 a
7434 @tab
7435 Punctum
7436 @tab
7437 @code{\[ b \]}
7438
7439 @item
7440 b
7441 @tab
7442 Punctum Inclinatum
7443 @tab
7444 @code{\[ \inclinatum b \]}
7445
7446 @item
7447 c
7448 @tab
7449 Punctum Auctum@*
7450 Ascendens
7451 @tab
7452 @code{\[ \auctum \ascendens b \]}
7453
7454 @item
7455 d
7456 @tab
7457 Punctum Auctum@*
7458 Descendens
7459 @tab
7460 @code{\[ \auctum \descendens b \]}
7461
7462 @item
7463 e
7464 @tab
7465 Punctum Inclinatum@*
7466 Auctum
7467 @tab
7468 @code{\[ \inclinatum \auctum b \]}
7469
7470 @item
7471 f
7472 @tab
7473 Punctum Inclinatum@*
7474 Parvum @tab
7475 @code{\[ \inclinatum \deminutum b \]}
7476
7477 @item
7478 g
7479 @tab
7480 Virga
7481 @tab
7482 @code{\[ \virga b \]}
7483
7484 @item
7485 h
7486 @tab
7487 Stropha
7488 @tab
7489 @code{\[ \stropha b \]}
7490
7491 @item
7492 i
7493 @tab
7494 Stropha Aucta
7495 @tab
7496 @code{\[ \stropha \auctum b \]}
7497
7498 @item
7499 j
7500 @tab
7501 Oriscus
7502 @tab
7503 @code{\[ \oriscus b \]}
7504
7505 @item
7506 k
7507 @tab
7508 Clivis vel Flexa
7509 @tab
7510 @code{\[ b \flexa g \]}
7511
7512 @item
7513 l
7514 @tab
7515 Clivis Aucta@*
7516 Descendens
7517 @tab
7518 @code{\[ b \flexa \auctum \descendens g \]}
7519
7520 @item
7521 m
7522 @tab
7523 Clivis Aucta@*
7524 Ascendens
7525 @tab
7526 @code{\[ b \flexa \auctum \ascendens g \]}
7527
7528 @item
7529 n
7530 @tab
7531 Cephalicus
7532 @tab
7533 @code{\[ b \flexa \deminutum g \]}
7534
7535 @item
7536 o
7537 @tab
7538 Podatus vel Pes
7539 @tab
7540 @code{\[ g \pes b \]}
7541
7542 @item
7543 p
7544 @tab
7545 Pes Auctus@*
7546 Descendens
7547 @tab
7548 @code{\[ g \pes \auctum \descendens b \]}
7549
7550 @item
7551 q
7552 @tab
7553 Pes Auctus@*
7554 Ascendens
7555 @tab
7556 @code{\[ g \pes \auctum \ascendens b \]}
7557
7558 @item
7559 r
7560 @tab
7561 Epiphonus
7562 @tab
7563 @code{\[ g \pes \deminutum b \]}
7564
7565 @item
7566 s
7567 @tab
7568 Pes Quassus
7569 @tab
7570 @code{\[ \oriscus g \pes \virga b \]}
7571
7572 @item
7573 t
7574 @tab
7575 Pes Quassus@*
7576 Auctus Descendens @tab
7577 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7578
7579 @item
7580 u
7581 @tab
7582 Quilisma Pes
7583 @tab
7584 @code{\[ \quilisma g \pes b \]}
7585
7586 @item
7587 v
7588 @tab
7589 Quilisma Pes@*
7590 Auctus Descendens
7591 @tab
7592 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7593
7594 @item
7595 w
7596 @tab
7597 Pes Initio Debilis
7598 @tab
7599 @code{\[ \deminutum g \pes b \]}
7600
7601 @item
7602 x
7603 @tab
7604 Pes Auctus Descendens@*
7605 Initio Debilis
7606 @tab
7607 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7608
7609 @item
7610 y
7611 @tab
7612 Torculus
7613 @tab
7614 @code{\[ a \pes b \flexa g \]}
7615
7616 @item
7617 z
7618 @tab
7619 Torculus Auctus@*
7620 Descendens
7621 @tab
7622 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7623
7624 @item
7625 A
7626 @tab
7627 Torculus Deminutus
7628 @tab
7629 @code{\[ a \pes b \flexa \deminutum g \]}
7630
7631 @item
7632 B
7633 @tab
7634 Torculus Initio Debilis
7635 @tab
7636 @code{\[ \deminutum a \pes b \flexa g \]}
7637
7638 @item
7639 C
7640 @tab
7641 Torculus Auctus@*
7642 Descendens Initio Debilis
7643 @tab
7644 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7645
7646 @item
7647 D
7648 @tab
7649 Torculus Deminutus@*
7650 Initio Debilis
7651 @tab
7652 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7653
7654 @item
7655 E
7656 @tab
7657 Porrectus
7658 @tab
7659 @code{\[ a \flexa g \pes b \]}
7660
7661 @item
7662 F
7663 @tab
7664 Porrectus Auctus@*
7665 Descendens
7666 @tab
7667 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7668
7669 @item
7670 G
7671 @tab
7672 Porrectus Deminutus
7673 @tab
7674 @code{\[ a \flexa g \pes \deminutum b \]}
7675
7676 @item
7677 H
7678 @tab
7679 Climacus
7680 @tab
7681 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7682
7683 @item
7684 I
7685 @tab
7686 Climacus Auctus
7687 @tab
7688 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7689
7690 @item
7691 J
7692 @tab
7693 Climacus Deminutus
7694 @tab
7695 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7696
7697 @item
7698 K
7699 @tab
7700 Scandicus
7701 @tab
7702 @code{\[ g \pes a \virga b \]}
7703
7704 @item
7705 L
7706 @tab
7707 Scandicus Auctus@*
7708 Descendens
7709 @tab
7710 @code{\[ g \pes a \pes \auctum \descendens b \]}
7711
7712 @item
7713 M
7714 @tab
7715 Scandicus Deminutus
7716 @tab
7717 @code{\[ g \pes a \pes \deminutum b \]}
7718
7719 @item
7720 N
7721 @tab
7722 Salicus
7723 @tab
7724 @code{\[ g \oriscus a \pes \virga b \]}
7725
7726 @item
7727 O
7728 @tab
7729 Salicus Auctus Descendens
7730 @tab
7731 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7732
7733 @item
7734 P
7735 @tab
7736 Trigonus
7737 @tab
7738 @code{\[ \stropha b \stropha b \stropha a \]}
7739 @end multitable
7740
7741 @refcommands
7742
7743 The following head prefixes are supported
7744
7745 @cindex @code{\virga}
7746 @code{\virga},
7747 @cindex @code{\stropha}
7748 @code{\stropha},
7749 @cindex @code{\inclinatum}
7750 @code{\inclinatum},
7751 @cindex @code{\auctum}
7752 @code{\auctum},
7753 @cindex @code{\descendens}
7754 @code{\descendens},
7755 @cindex @code{\ascendens}
7756 @code{\ascendens},
7757 @cindex @code{\oriscus}
7758 @code{\oriscus},
7759 @cindex @code{\quilisma}
7760 @code{\quilisma},
7761 @cindex @code{\deminutum}
7762 @code{\deminutum}.
7763
7764 Head prefixes can be accumulated, though restrictions apply.  For
7765 example, either @code{\descendens} or @code{\ascendens} can be applied
7766 to a head, but not both to the same head.
7767
7768 @cindex @code{\pes}
7769 @cindex @code{\flexa}
7770 Two adjacent heads can be tied together with the @code{\pes} and
7771 @code{\flexa} infix commands for a rising and falling line of melody,
7772 respectively.
7773
7774
7775
7776 @node Gregorian Chant contexts
7777 @subsection Gregorian Chant contexts
7778
7779 @cindex VaticanaVoiceContext
7780 @cindex VaticanaStaffContext
7781
7782 The predefined @code{VaticanaVoiceContext} and
7783 @code{VaticanaStaffContext} can be used to engrave a piece of
7784 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7785 initialize all relevant context properties and grob properties to
7786 proper values, so you can immediately go ahead entering the chant, as
7787 the following excerpt demonstrates
7788
7789 @lilypond[quote,raggedright,verbatim]
7790 \include "gregorian-init.ly"
7791 \score {
7792   <<
7793     \context VaticanaVoice = "cantus" {
7794       \override Score.BarNumber #'transparent = ##t {
7795         \[ c'\melisma c' \flexa a \]
7796         \[ a \flexa \deminutum g\melismaEnd \]
7797         f \divisioMinima
7798         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7799         c' \divisioMinima \break
7800         \[ c'\melisma c' \flexa a \]
7801         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7802       }
7803     }
7804     \lyricsto "cantus" \new Lyrics {
7805       San- ctus, San- ctus, San- ctus
7806     }
7807   >>
7808 }
7809 @end lilypond
7810
7811
7812 @node Mensural contexts
7813 @subsection Mensural contexts
7814
7815 @cindex MensuralVoiceContext
7816 @cindex MensuralStaffContext
7817
7818 The predefined @code{MensuralVoiceContext} and
7819 @code{MensuralStaffContext} can be used to engrave a piece in mensural
7820 style.  These contexts initialize all relevant context properties and
7821 grob properties to proper values, so you can immediately go ahead
7822 entering the chant, as the following excerpt demonstrates
7823
7824 @lilypond[quote,raggedright,verbatim]
7825 \score {
7826   <<
7827     \context MensuralVoice = "discantus" \transpose c c' {
7828       \override Score.BarNumber #'transparent = ##t {
7829         c'1\melisma bes a g\melismaEnd
7830         f\breve
7831         \[ f1\melisma a c'\breve d'\melismaEnd \]
7832         c'\longa
7833         c'\breve\melisma a1 g1\melismaEnd
7834         fis\longa^\signumcongruentiae
7835       }
7836     }
7837     \lyricsto "discantus" \new Lyrics {
7838       San -- ctus, San -- ctus, San -- ctus
7839     }
7840   >>
7841 }
7842 @end lilypond
7843
7844
7845 @node Figured bass
7846 @subsection Figured bass
7847
7848 @cindex Basso continuo
7849
7850 @c TODO: musicological blurb about FB
7851
7852
7853 LilyPond has limited support for figured bass
7854
7855 @lilypond[quote,raggedright,verbatim,fragment]
7856 <<
7857   \context Voice { \clef bass dis4 c d ais g fis}
7858   \context FiguredBass \figuremode {
7859     < 6 >4 < 7 >8 < 6+ [_!] >
7860     < 6 >4 <6 5 [3+] >
7861     < _ >4 < 6 >4
7862   }
7863 >>
7864 @end lilypond
7865
7866 The support for figured bass consists of two parts: there is an input
7867 mode, introduced by @code{\figuremode}, where you can enter bass figures
7868 as numbers, and there is a context called @internalsref{FiguredBass} that
7869 takes care of making @internalsref{BassFigure} objects.
7870
7871 In figures input mode, a group of bass figures is delimited by
7872 @code{<} and @code{>}.  The duration is entered after the @code{>}
7873 @example
7874 <4 6>
7875 @end example
7876 @lilypond[quote,raggedright,fragment]
7877 \context FiguredBass
7878 \figuremode { <4 6> }
7879 @end lilypond
7880
7881 Accidentals are added when you append @code{-}, @code{!}, and @code{+}
7882 to the numbers
7883
7884 @example
7885 <4- 6+ 7!>
7886 @end example
7887 @lilypond[quote,raggedright,fragment]
7888 \context FiguredBass
7889 \figuremode { <4- 6+ 7!> }
7890 @end lilypond
7891
7892 Spaces or dashes may be inserted by using @code{_}.  Brackets are
7893 introduced with @code{[} and @code{]}
7894
7895 @example
7896 < [4 6] 8 [_! 12] >
7897 @end example
7898 @lilypond[quote,raggedright,fragment]
7899 \context FiguredBass
7900 \figuremode { < [4 6] 8 [_! 12] > }
7901 @end lilypond
7902
7903 Although the support for figured bass may superficially resemble chord
7904 support, it works much simpler.  The @code{\figuremode} mode simply
7905 stores the numbers and @internalsref{FiguredBass} context prints
7906 them as entered.  There is no conversion to pitches and no
7907 realizations of the bass are played in the MIDI file.
7908
7909 Internally, the code produces markup texts.  You can use any of the
7910 markup text properties to override formatting.  For example, the
7911 vertical spacing of the figures may be set with @code{baseline-skip}.
7912
7913 @seealso
7914
7915 Program reference: @internalsref{BassFigureEvent} music,
7916 @internalsref{BassFigure} object, and @internalsref{FiguredBass} context.
7917
7918 @refbugs
7919
7920 Slash notation for alterations is not supported.
7921
7922 @node Contemporary notation
7923 @section Contemporary notation
7924
7925 In the 20th century, composers have greatly expanded the musical
7926 vocabulary.  With this expansion, many innovations in musical notation
7927 have been tried.  The book ``Music Notation in the 20th century'' by
7928 Kurt Stone gives a comprehensive overview (see @ref{Literature
7929 list}).  In general, the use of new, innovative notation makes a piece
7930 harder to understand and perform and its use should therefore be
7931 avoided.  For this reason, support for contemporary notation in
7932 LilyPond is limited.
7933
7934
7935 @menu
7936 * Polymetric notation::         
7937 * Clusters::                    
7938 * Special fermatas::            
7939 * Feathered beams::             
7940 @end menu
7941
7942 @node Polymetric notation
7943 @subsection Polymetric notation
7944
7945 Double time signatures are not supported explicitly, but they can be
7946 faked.  In the next example, the markup for the time signature is
7947 created with a markup text.  This markup text is inserted in the
7948 @internalsref{TimeSignature} grob.
7949
7950 @lilypond[verbatim,raggedright]
7951 % create 2/4 + 5/8
7952 tsMarkup =\markup {
7953   \number {
7954     \column { "2" "4" }
7955     \musicglyph #"scripts-stopped"
7956     \bracket \column { "5" "8" }
7957   }
7958 }
7959
7960 {
7961   \override Staff.TimeSignature #'print-function = #Text_interface::print
7962   \override Staff.TimeSignature #'text = #tsMarkup
7963   \time 3/2
7964   c'2 \bar ":" c'4 c'4.
7965 }
7966 @end lilypond
7967
7968 Each staff can also have its own time signature.  This is done by
7969 moving the @internalsref{Timing_engraver} to the @internalsref{Staff}
7970 context.
7971
7972 @example
7973 \layout @{
7974   \context @{ \Score \remove "Timing_engraver" @}
7975   \context @{ \Staff \consists "Timing_engraver" @}
7976 @}
7977 @end example
7978
7979
7980 Now, each staff has its own time signature.
7981 @example
7982 <<
7983   \new Staff @{
7984     \time 3/4
7985     c4 c c | c c c |
7986   @}
7987   \new Staff @{
7988     \time 2/4
7989     c4 c | c c | c c
7990   @}
7991   \new Staff @{
7992     \time 3/8
7993     c4. c8 c c c4. c8 c c
7994   @}
7995 >>
7996 @end example
7997
7998 @lilypond[quote,raggedright]
7999 \layout{
8000   \context{ \Score \remove "Timing_engraver" }
8001   \context{ \Staff \consists "Timing_engraver" }
8002 }
8003
8004 \relative c' <<
8005   \new Staff {
8006     \time 3/4
8007     c4 c c | c c c |
8008   }
8009   \new Staff {
8010     \time 2/4
8011     c4 c | c c | c c
8012   }
8013   \new Staff {
8014     \time 3/8
8015     c4. c8 c c c4. c8 c c
8016   }
8017 >>
8018 @end lilypond
8019
8020
8021 A different form of polymetric notation is where note lengths have
8022 different values across staves.
8023
8024 This notation can be created by setting a common time signature for
8025 each staff but replacing it manually using
8026 @code{timeSignatureFraction} to the desired fraction.  Then the printed
8027 durations in each staff are scaled to the common time signature.
8028 The latter is done with @code{\compressmusic}, which is similar to
8029 @code{\times}, but does not create a tuplet bracket.
8030
8031
8032 In this example, music with the time signatures of 3/4, 9/8, and 10/8 are
8033 used in parallel.  In the second staff, shown durations are multiplied by
8034 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
8035 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
8036
8037 @lilypond[quote,raggedright,verbatim,fragment]
8038 \relative c' { <<
8039   \new Staff {
8040     \time 3/4
8041     c4 c c | c c c |
8042   }
8043   \new Staff {
8044     \time 3/4
8045     \set Staff.timeSignatureFraction = #'(9 . 8)
8046     \compressmusic #'(2 . 3)
8047       \repeat unfold 6 { c8[ c c] }
8048   }
8049   \new Staff {
8050     \time 3/4
8051     \set Staff.timeSignatureFraction = #'(10 . 8)
8052     \compressmusic #'(3 . 5) {
8053       \repeat unfold 2 { c8[ c c] }
8054       \repeat unfold 2 { c8[ c] }
8055       | c4. c4. \times 2/3 { c8 c c } c4
8056     }
8057   }
8058 >> }
8059 @end lilypond
8060
8061
8062
8063
8064 @refbugs
8065
8066 When using different time signatures in parallel, the spacing is
8067 aligned vertically, but bar lines distort the regular spacing.
8068
8069
8070
8071 @node Clusters
8072 @subsection Clusters
8073
8074 @cindex cluster
8075
8076 A cluster indicates a continuous range of pitches to be played.  They
8077 can be denoted as the envelope of a set of notes.  They are entered by
8078 applying the function @code{makeClusters} to a sequence of
8079 chords, e.g.,
8080 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
8081 \makeClusters { <c e > <b f'> }
8082 @end lilypond
8083
8084 The following example (from
8085 @inputfileref{input/@/regression,cluster@/.ly}) shows what the result
8086 looks like
8087
8088 @lilypondfile[raggedright,quote]{cluster.ly}
8089
8090 Ordinary notes and clusters can be put together in the same staff,
8091 even simultaneously.  In such a case no attempt is made to
8092 automatically avoid collisions between ordinary notes and clusters.
8093
8094 @seealso
8095
8096 Program reference: @internalsref{ClusterSpanner},
8097 @internalsref{ClusterSpannerBeacon},
8098 @internalsref{Cluster_spanner_engraver}, and
8099 @internalsref{ClusterNoteEvent}.
8100
8101 Examples: @inputfileref{input/@/regression,cluster@/.ly}.
8102
8103 @refbugs
8104
8105 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
8106 accurately.  Use @code{<g a>8 <e a>8} instead.
8107
8108
8109
8110 @node Special fermatas
8111 @subsection Special fermatas
8112
8113 @cindex fermatas, special
8114
8115 In contemporary music notation, special fermata symbols denote breaks
8116 of differing lengths.  The following fermatas are supported
8117
8118 @lilypond[quote,raggedright]
8119 <<
8120   \oldaddlyrics {
8121     b'2
8122     ^\shortfermata
8123     _\shortfermata
8124     r
8125
8126     b'
8127     ^\fermata
8128     _\fermata
8129     r
8130
8131     b'
8132     ^\longfermata
8133     _\longfermata
8134     r
8135
8136     b'
8137     ^\verylongfermata
8138     _\verylongfermata
8139     r
8140   }
8141   \context Lyrics \lyricmode {
8142     \override LyricText #'font-family = #'typewriter
8143     "shortfermata" "fermata" "longfermata" "verylongfermata"
8144   }
8145 >>
8146 @end lilypond
8147
8148 See @ref{Articulations} for general instructions how to apply scripts
8149 such as fermatas to notes.
8150
8151 @node Feathered beams
8152 @subsection Feathered beams
8153
8154 Feathered beams are not supported natively, but they can be faked by
8155 forcing two beams to overlap.  Here is an example,
8156
8157 @c don't change relative setting witout changing positions!
8158 @lilypond[raggedright,relative=1,fragment,verbatim]
8159 \new Staff <<
8160   \new Voice
8161   {
8162     \stemUp
8163     \once \override Voice.Beam #'positions = #'(0 . 0.5)
8164     c8[ c c c c ]
8165   }
8166   \new Voice {
8167     \stemUp
8168     \once \override Voice.Beam #'positions = #'(0 . -0.5)
8169     c[ c c c c]
8170   }
8171 >>
8172 @end lilypond
8173
8174
8175
8176 @node Educational use
8177 @section Educational use
8178
8179 With the amount of control that LilyPond offers, one can make great
8180 teaching tools in addition to great musical scores.
8181
8182 @menu
8183 * Balloon help::                
8184 * Blank music sheet::           
8185 * Hidden notes::                
8186 * Shaped note heads ::          
8187 * Easy Notation note heads::    
8188 @end menu
8189
8190 @node Balloon help
8191 @subsection Balloon help
8192
8193 Elements of notation can be marked and named with the help of a square
8194 balloon.  The primary purpose of this feature is to explain notation.
8195
8196 The following example demonstrates its use.
8197
8198 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
8199 \context Voice {
8200   \applyoutput
8201     #(add-balloon-text 'NoteHead "heads, or tails?"
8202     '(1 . -3))
8203   c8
8204 }
8205 @end lilypond
8206
8207 @noindent
8208 The function @code{add-balloon-text} takes the name of a grob, the
8209 label to print, and the position where to put the label relative to
8210 the object.  In the above example, the text ``heads or tails?'' ends
8211 3 spaces below and 1 space to the right of the marked head.
8212
8213 @cindex balloon
8214 @cindex notation, explaining
8215
8216 @seealso
8217
8218 Program reference: @internalsref{text-balloon-interface}.
8219
8220 Examples: @inputfileref{input/@/regression,balloon@/.ly}.
8221
8222
8223
8224
8225 @node Blank music sheet
8226 @subsection Blank music sheet
8227
8228 A blank music sheet can be produced also by using invisible notes, and
8229 removing @code{Bar_number_engraver}.
8230
8231
8232 @lilypond[quote,verbatim]
8233 emptymusic = {
8234   \repeat unfold 2 % Change this for more lines.
8235   { s1\break }
8236   \bar "|."
8237 }
8238 \new Score \with {
8239   \override TimeSignature #'transparent = ##t
8240   defaultBarType = #""
8241   \remove Bar_number_engraver
8242 } <<
8243   \context Staff \emptymusic
8244   \context TabStaff \emptymusic
8245 >>
8246 @end lilypond
8247
8248
8249 @node Hidden notes
8250 @subsection Hidden notes
8251
8252 @cindex Hidden notes
8253 @cindex Invisible notes
8254 @cindex Transparent notes
8255
8256 Hidden (or invisible or transparent) notes can be useful in preparing theory
8257 or composition exercises.
8258
8259 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
8260 c4 d4
8261 \hideNotes
8262 e4 f4
8263 \unHideNotes
8264 g4 a
8265 @end lilypond
8266
8267 Hidden notes are also great for performing weird tricks.  For example,
8268 slurs cannot be attached to rests or spacer rests, but you may wish
8269 to include that in your score -- string instruments use this notation
8270 when doing pizzicato to indicate that the note should ring for as long
8271 as possible.
8272
8273 @lilypond[quote,raggedright,verbatim,relative=0,fragment]
8274 \clef bass
8275 << {
8276   c4^"pizz"( \hideNotes c)
8277   \unHideNotes c( \hideNotes c)
8278 } {
8279   s4 r s r
8280 } >>
8281 @end lilypond
8282
8283
8284 @node Shaped note heads 
8285 @subsection Shaped note heads 
8286
8287 In shaped note head notation, the shape of the note head corresponds
8288 to the harmonic function of a note in the scale. This notation was
8289 popular in the 19th century American song books.
8290
8291 Shaped note heads can be produced by setting @code{\aikenHeads} or
8292 @code{\sacredHarpHeads}, depending on the style desired.
8293
8294 @lilypond[verbatim,relative=1,fragment]
8295   \aikenHeads
8296   c8 d4 e8 a2 g1
8297   \sacredHarpHeads
8298   c8 d4. e8 a2 g1
8299 @end lilypond
8300
8301 Shapes are determined on the step in the scale, where the base of the
8302 scale is determined by  the @code{\key} command
8303
8304 @findex \key
8305 @findex shapeNoteStyles
8306 @findex \aikenHeads
8307 @findex \sacredHarpHeads
8308
8309 Shaped note heads are implemented through the @code{shapeNoteStyles}
8310 property. Its value is a vector of symbols. The k-th element indicates
8311 the style to use for the k-th step of the scale. Arbitrary
8312 combinations  are possible, eg.,
8313
8314
8315 @lilypond[verbatim,relative=1,fragment]
8316   \set shapeNoteStyles  = ##(cross triangle fa #f mensural xcircle diamond)
8317   c8 d4. e8 a2 g1
8318 @end lilypond
8319
8320
8321 @node Easy Notation note heads
8322 @subsection Easy Notation note heads
8323
8324 @cindex easy notation
8325 @cindex Hal Leonard
8326
8327 The `easy play' note head includes a note name inside the head.  It is
8328 used in music for beginners
8329
8330 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
8331   \setEasyHeads
8332   c'2 e'4 f' | g'1
8333 @end lilypond
8334
8335 The command @code{\setEasyHeads} overrides settings for the
8336 @internalsref{NoteHead} object.  To make the letters readable, it has
8337 to be printed in a large font size.  To print with a larger font, see
8338 @ref{Setting global staff size}.
8339
8340 @refcommands
8341
8342 @cindex @code{\setEasyHeads}
8343 @code{\setEasyHeads}
8344