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