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