]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation.itely
More editing.
[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{Automatic 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{\dotsNeutral}
379 @code{\dotsNeutral}.
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{\stemNeutral}
422 @code{\stemNeutral}. 
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{\tieNeutral}
476 @code{\tieNeutral}, 
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{\tupletNeutral}
551 @code{\tupletNeutral}.
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 The relative conversion will not affect @code{\transpose},
660 @code{\chordmode} or @code{\relative} sections in its argument.  To use
661 relative within transposed music, an additional @code{\relative} must
662 be placed inside @code{\transpose}.
663
664 @node Octave check
665 @subsection Octave check
666
667
668 Octave checks make octave errors easier to correct:  a note may be
669 followed by @code{=}@var{quotes} which indicates what its absolute
670 octave should be.  In the following example,
671 @example
672 \relative c'' @{ c='' b=' d,='' @}        
673 @end example
674
675 @noindent
676 @c take care with @code, adds confusing quotes.
677 the @code{d} will generate a warning, because a @code{d''} is expected
678 (because @code{b'} to @code{d''} is only a third), but a @code{d}' is
679 found.  In the output, the octave is corrected to be a @code{d''} and
680 the next note is calculated relative to @code{d''} instead of @code{d'}.
681
682
683
684 There is also a syntax that is separate from the notes.  The syntax
685
686 @example
687 \octave @var{pitch}
688 @end example
689
690 This checks that @var{pitch} (without quotes) yields @var{pitch} (with
691 quotes) in \relative mode.  If not, a warning is printed, and the
692 octave is corrected.
693
694 In the example below, the first check passes without incident, since
695 the @code{e} (in relative mode) is within a fifth of @code{a'}.  However,
696 the second check produces a warning, since the @code{e} is not within
697 a fifth of @code{b'}.  The warning message is printed, and the octave
698 is adjusted so that the following notes are in the correct octave
699 once again.
700
701 @example
702 \relative c' @{
703   e
704   \octave a'
705   \octave b'
706 @}
707 @end example
708
709
710 The octave of a note following an octave check is determined with
711 respect to the note preceding it.  In the next fragment, the last note
712 is a @code{a'}, above middle C.  That means that the @code{\octave}
713 check passes successfully, so the check could be deleted without changing
714 the output of the piece.
715
716 @lilypond[quote,verbatim,fragment] 
717 \relative c' {
718   e
719   \octave b
720   a        
721 }
722 @end lilypond
723
724 @node Bar check
725 @subsection Bar check
726 @cindex Bar check
727
728 @cindex bar check
729 @cindex @code{barCheckSynchronize}
730 @cindex @code{|}
731
732 Bar checks help detect errors in the durations.  A bar check is
733 entered using the bar symbol, `@code{|}'.  Whenever it is encountered
734 during interpretation, it should fall on a measure boundary.  If it
735 does not, a warning is printed.  In the next example, the second bar
736 check will signal an error
737 @example
738 \time 3/4 c2 e4 | g2 | 
739 @end example
740
741 Bar checks can also be used in lyrics, for example 
742
743 @example
744 \lyricmode @{
745   \time 2/4
746   Twin -- kle | Twin -- kle
747 @} 
748 @end example
749
750
751 @cindex @code{skipTypesetting}
752
753 Failed bar checks are caused by entering incorrect
754 durations.  Incorrect durations often completely garble up the score,
755 especially if the score is polyphonic, so a good place to start correcting
756 input is by scanning for failed bar checks and incorrect durations.  To
757 speed up this process, the @code{skipTypesetting} feature may be
758 used.  It is described in the next section.
759
760 @cindex @code{|}
761 @cindex @code{pipeSymbol}
762
763 It is also possible to redefine the meaning of @code{|}.  This is done
764 by assigning a music expression to @code{pipeSymbol},
765
766 @lilypond[quote,raggedright,verbatim]
767 pipeSymbol = \bar "||"
768
769 { c'2 c' | c'2 c }
770 @end lilypond 
771
772
773 @node Skipping corrected music
774 @subsection Skipping corrected music
775
776 The property @code{Score.skipTypesetting} can be used to switch on and
777 off typesetting completely during the interpretation phase.  When
778 typesetting is switched off, the music is processed much more
779 quickly.  This can be used to skip over the parts of a score that
780 have already been checked for errors
781
782 @lilypond[quote,fragment,raggedright,verbatim]
783 \relative c'' {
784   c8 d
785   \set Score.skipTypesetting = ##t
786   e e e e e e e e
787   \set Score.skipTypesetting = ##f
788   c d b bes a g c2 }
789 @end lilypond
790
791 In polyphonic music, @code{Score.skipTypesetting} will affect all
792 voices and staves, saving even more time.
793
794 @node Automatic note splitting
795 @subsection Automatic note splitting
796
797 Long notes can be converted automatically to tied notes.  This is done
798 by replacing the @internalsref{Note_heads_engraver} by the
799 @internalsref{Completion_heads_engraver}.
800 In the following examples, notes crossing the bar line are split and tied.
801
802
803 @lilypond[quote,fragment,verbatim,relative=1,raggedright]
804 \new Voice \with {
805   \remove "Note_heads_engraver"
806   \consists "Completion_heads_engraver"
807 } {
808   c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
809 }
810 @end lilypond
811
812 This engraver splits all running notes at the bar line, and inserts
813 ties.  One of its uses is to debug complex scores: if the measures are
814 not entirely filled, then the ties exactly show how much each measure
815 is off.
816
817 @refbugs
818
819 Not all durations (especially those containing tuplets) can be
820 represented exactly with normal notes and dots, but the engraver will
821 not insert tuplets.
822
823 @seealso
824
825 Examples: @inputfileref{input/regression,completion-heads.ly}.
826
827 @noindent
828
829 Program reference: @internalsref{Completion_heads_engraver}.
830
831
832 @node Staff notation
833 @section Staff notation
834
835 This section describes music notation that occurs on staff level,
836 such as key signatures, clefs and time signatures.
837
838 @cindex Staff notation
839
840 @menu
841 * Staff symbol::                
842 * Key signature::               
843 * Clef::                        
844 * Ottava brackets::             
845 * Time signature::              
846 * Partial measures::            
847 * Unmetered music::             
848 * Bar lines::                   
849 * Time administration::         
850 * Controlling formatting of prefatory matter::  
851 @end menu
852
853 @node Staff symbol
854 @subsection Staff symbol
855
856 @cindex adjusting staff symbol
857
858 Notes, dynamic signs, etc. are grouped
859 with a set of horizontal lines, into a staff (plural `staves').  In our
860 system, these lines are drawn using a separate layout object called
861 staff symbol.  
862
863
864 @cindex staff lines, setting number of
865 @cindex staff lines, setting thickness of
866 @cindex thickness of staff lines, setting 
867 @cindex number of staff lines, setting 
868
869 @seealso
870
871 Program reference: @internalsref{StaffSymbol}.
872
873 Examples: @inputfileref{input/test,staff-lines.ly},
874 @inputfileref{input/test,staff-size.ly}.
875
876 @refbugs
877
878 If a staff is ended halfway a piece, the staff symbol may not end
879 exactly on the bar line.
880
881
882 @node Key signature
883 @subsection Key signature
884 @cindex Key signature
885
886 @cindex @code{\key}
887
888 The key signature indicates the scale in which a piece is played.  It
889 is denoted by a set of alterations (flats or sharps) at the start of
890 the staff.
891
892
893 Setting or changing the key signature is done with the @code{\key}
894 command
895 @example
896   @code{\key} @var{pitch} @var{type}
897 @end example
898
899 @cindex @code{\minor}
900 @cindex @code{\major}
901 @cindex @code{\minor}
902 @cindex @code{\ionian}
903 @cindex @code{\locrian}
904 @cindex @code{\aeolian}
905 @cindex @code{\mixolydian}
906 @cindex @code{\lydian}
907 @cindex @code{\phrygian}
908 @cindex @code{\dorian}
909
910 Here, @var{type} should be @code{\major} or @code{\minor} to get
911 @var{pitch}-major or @var{pitch}-minor, respectively.
912 The standard mode names @code{\ionian},
913 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
914 @code{\phrygian}, and @code{\dorian} are also defined.
915
916 This command sets the context property
917 @internalsref{Staff}.@code{keySignature}.  Non-standard key signatures
918 can be specified by setting this property directly.
919
920 Accidentals and key signatures often confuse new users, because
921 unaltered notes get natural signs depending on the key signature.  For
922 more information, see @ref{More about pitches}.
923
924 @seealso
925
926 Program reference: @internalsref{KeyChangeEvent},
927 @internalsref{KeyCancellation} and @internalsref{KeySignature}.
928
929 @cindex @code{keySignature}
930
931
932 @node Clef
933 @subsection Clef
934 @cindex @code{\clef}
935
936 The clef indicates which lines of the staff correspond to which
937 pitches.
938
939
940 The clef can be set with the @code{\clef} command
941 @lilypond[quote,fragment,verbatim]
942 { c''2 \clef alto g'2 }
943 @end lilypond
944
945 Supported clef-names include
946 @c Moved standard clefs to the top /MB
947 @table @code
948 @cindex treble clef
949 @cindex violin clef
950 @item treble, violin, G, G2
951 G clef on 2nd line
952 @item alto, C
953 @cindex alto clef 
954  C clef on 3rd line
955 @item tenor
956 @cindex tenor clef 
957  C clef on 4th line. 
958 @item bass, F
959 @cindex bass clef
960  F clef on 4th line
961 @item french
962 @cindex french clef
963  G clef on 1st line, so-called French violin clef
964 @item soprano
965 @cindex soprano clef
966  C clef on 1st line
967 @item mezzosoprano
968 @cindex mezzosoprano clef
969  C clef on 2nd line
970 @item baritone
971 @cindex baritone clef
972  C clef on 5th line
973 @item varbaritone
974 @cindex varbaritone clef
975  F clef on 3rd line
976 @item subbass
977 @cindex subbass clef
978  F clef on 5th line
979 @item percussion
980  percussion clef
981 @item tab
982  tablature clef
983 @end table
984
985 By adding @code{_8} or @code{^8} to the clef name, the clef is
986 transposed one octave down or up, respectively, and @code{_15} and
987 @code{^15} transposes by two octaves.  The argument @var{clefname}
988 must be enclosed in quotes when it contains underscores or digits.  For
989 example,
990
991
992 @cindex choral tenor clef  
993 @lilypond[quote,verbatim,fragment,relative=1]
994 \clef "G_8" c4
995 @end lilypond
996
997 This command is equivalent to setting @code{clefGlyph},
998 @code{clefPosition} (which controls the Y position of the clef),
999 @code{centralCPosition} and @code{clefOctavation}.  A clef is printed
1000 when any of these properties are changed.  The following example shows
1001 possibilities when setting properties manually.
1002
1003 @lilypond[verbatim]
1004 {
1005   \set Staff.clefGlyph = #"clefs-F"
1006   \set Staff.clefPosition = #2
1007   c'4
1008   \set Staff.clefGlyph = #"clefs-G"
1009   c'4
1010   \set Staff.clefGlyph = #"clefs-C"
1011   c'4
1012   \set Staff.clefOctavation = #7 
1013   c'4
1014   \set Staff.clefOctavation = #0 
1015   \set Staff.clefPosition = #0
1016   c'4
1017   \clef "bass"
1018   c'4
1019 }
1020 @end lilypond
1021
1022
1023 @seealso
1024
1025 Program reference: @internalsref{Clef}.
1026
1027
1028
1029 @node Ottava brackets
1030 @subsection Ottava brackets
1031
1032 `Ottava' brackets introduce an extra transposition of an octave for
1033 the staff.  They are created by invoking the function
1034 @code{set-octavation}
1035
1036 @cindex ottava
1037 @cindex 15ma
1038 @cindex octavation
1039
1040 @lilypond[quote,verbatim,fragment]
1041 \relative c''' {
1042   a2 b
1043   #(set-octavation 1)
1044   a b 
1045   #(set-octavation 0)
1046   a b
1047 }
1048 @end lilypond
1049
1050 The @code{set-octavation} function also takes -1 (for 8va bassa) and 2
1051 (for 15ma) as arguments.  Internally the function sets the properties
1052 @code{ottavation} (e.g. to @code{"8va"}) and
1053 @code{centralCPosition}.  For overriding the text of the bracket, set
1054 @code{ottavation} after invoking @code{set-octavation}, i.e.,
1055
1056 @lilypond[verbatim]
1057 {
1058   #(set-octavation 1)
1059   \set Staff.ottavation = #"8"
1060   c'''
1061 }
1062 @end lilypond
1063
1064 @seealso
1065
1066 Program reference: @internalsref{OttavaBracket}.
1067
1068 Examples: @inputfileref{input/regression,ottava.ly},
1069 @inputfileref{input/regression,ottava-broken.ly}.
1070
1071 @refbugs
1072
1073 @code{set-octavation} will get confused when clef changes happen
1074 during an octavation bracket.
1075
1076
1077
1078
1079 @node Time signature
1080 @subsection Time signature
1081 @cindex Time signature
1082 @cindex meter
1083 @cindex @code{\time}
1084
1085 Time signature indicates the metrum of a piece: a regular pattern of
1086 strong and weak beats.  It is denoted by a fraction at the start of the
1087 staff.
1088
1089
1090 The time signature is set or changed by the @code{\time}
1091 command
1092 @lilypond[quote,fragment,verbatim]
1093 \time 2/4 c'2 \time 3/4 c'2. 
1094 @end lilypond
1095
1096 The symbol that is printed can be customized with the @code{style}
1097 property.  Setting it to @code{#'()} uses fraction style for 4/4 and
1098 2/2 time,
1099
1100 @lilypond[fragment,verbatim]
1101 \time 4/4 c'1
1102 \time 2/2 c'1
1103 \override Staff.TimeSignature #'style = #'()
1104 \time 4/4 c'1
1105 \time 2/2 c'1
1106 @end lilypond
1107
1108
1109
1110 There are many more options for its layout.  See @ref{Ancient time
1111 signatures} for more examples.
1112
1113
1114 This command sets the property @code{timeSignatureFraction},
1115 @code{beatLength} and @code{measureLength} in the @code{Timing}
1116 context, which is normally aliased to @internalsref{Score}.  The
1117 property @code{measureLength} determines where bar lines should be
1118 inserted, and how automatic beams should be generated.  Changing the
1119 value of @code{timeSignatureFraction} also causes the symbol to be
1120 printed.
1121
1122 More options are available through the Scheme function
1123 @code{set-time-signature}.  In combination with the
1124 @internalsref{Measure_grouping_engraver}, it will create
1125 @internalsref{MeasureGrouping} signs.  Such signs ease reading
1126 rhythmically complex modern music.  In the following example, the 9/8
1127 measure is subdivided in 2, 2, 2 and 3.  This is passed to
1128 @code{set-time-signature} as the third argument @code{(2 2 2 3)}
1129
1130 @lilypond[quote,raggedright,verbatim]
1131 \score {
1132   \relative c'' {
1133     #(set-time-signature 9 8 '(2 2 2 3))
1134     g8[ g] d[ d] g[ g] a8[( bes g]) | 
1135     #(set-time-signature 5 8 '(3 2))
1136     a4. g4
1137   }
1138   \paper {
1139     \context {
1140       \Staff
1141       \consists "Measure_grouping_engraver"
1142     }
1143   }
1144 }
1145 @end lilypond
1146
1147 @seealso
1148
1149 Program reference: @internalsref{TimeSignature}, and @internalsref{Timing_engraver}.
1150
1151
1152 @refbugs
1153
1154 Automatic beaming does not use the measure grouping specified with
1155 @code{set-time-signature}.
1156
1157 @node Partial measures
1158 @subsection Partial measures
1159 @cindex Partial
1160 @cindex anacrusis
1161 @cindex partial measure
1162 @cindex measure, partial
1163 @cindex shorten measures
1164 @cindex @code{\partial}
1165
1166 Partial measures, for example in upsteps, are entered using the
1167 @code{\partial} command
1168 @lilypond[quote,fragment,verbatim,relative=2]
1169 \partial 16*5  c16 cis d dis e | a2. c,4 | b2
1170 @end lilypond
1171
1172 The syntax for this command is 
1173 @example
1174   \partial @var{duration} 
1175 @end example
1176 This is internally translated into
1177 @example
1178   \set Timing.measurePosition = -@var{length of duration}
1179 @end example
1180 @cindex @code{|}
1181 The property @code{measurePosition} contains a rational number
1182 indicating how much of the measure has passed at this point.
1183
1184 @refbugs
1185
1186 This command does not take into account grace notes at the start of
1187 the music.  When a piece starts with graces notes in the pickup, then
1188 the @code{\partial} should follow the grace notes
1189
1190 @lilypond[verbatim,relative,fragment]
1191 {
1192   \grace f16 
1193   \partial 4
1194   g4
1195   a2 g2 
1196 }
1197 @end lilypond
1198
1199
1200 @node Unmetered music
1201 @subsection Unmetered music
1202
1203 @cindex @code{\bar}
1204
1205 Bar lines and bar numbers are calculated automatically.  For unmetered
1206 music (e.g. cadenzas), this is not desirable.  By setting
1207 @code{Score.timing} to false, this automatic timing can be switched
1208 off.  Empty bar lines,
1209
1210 @example
1211   \bar ""
1212 @end example
1213
1214 @noindent
1215 indicate where line breaks can occur.
1216
1217 @refcommands
1218
1219 @cindex @code{\cadenzaOn}
1220 @code{\cadenzaOn}, 
1221 @cindex @code{\cadenzaOff}
1222 @code{\cadenzaOff}.
1223
1224
1225
1226
1227 @node Bar lines
1228 @subsection Bar lines
1229 @cindex Bar lines
1230
1231 @cindex @code{\bar}
1232 @cindex measure lines
1233 @cindex repeat bars
1234
1235
1236 Bar lines delimit measures, but are also used to indicate repeats.
1237 Normally, they are inserted automatically.  Line breaks may only
1238 happen on bar lines.
1239
1240 Special types of bar lines can be forced with the @code{\bar} command
1241 @c
1242 @lilypond[quote,relative=2,fragment,verbatim]
1243 c4 \bar "|:" c4
1244 @end lilypond
1245
1246 The following bar types are available
1247 @lilypondfile[]{bar-lines.ly}
1248
1249 For allowing line breaks, there is a special command,
1250 @example
1251   \bar ""
1252 @end example 
1253 This will insert an invisible bar line, and allow line breaks at this
1254 point.
1255
1256 In scores with many staves, a @code{\bar} command in one staff is
1257 automatically applied to all staves.  The resulting bar lines are
1258 connected between different staves of a @internalsref{StaffGroup}
1259 @c
1260 @lilypond[quote,fragment,verbatim]
1261 <<
1262   \context StaffGroup <<
1263     \new Staff {
1264       e'4 d'
1265       \bar "||"
1266       f' e'
1267     }
1268     \new Staff { \clef bass c4 g e g }
1269   >>
1270   \new Staff { \clef bass c2 c2 }
1271 >>
1272 @end lilypond
1273
1274
1275 The command @code{\bar }@var{bartype} is a short cut for doing
1276 @code{\set Timing.whichBar = }@var{bartype}.  Whenever @code{whichBar}
1277 is set to a string, a bar line of that type is created.
1278
1279 A bar line is created whenever the @code{whichBar} property is set.
1280 At the start of a measure it is set to the contents of
1281 @code{defaultBarType}.  The contents of @code{repeatCommands} are used
1282 to override default measure bars.
1283
1284 @cindex @code{whichBar}
1285 @cindex @code{repeatCommands}
1286 @cindex @code{defaultBarType}
1287
1288 You are encouraged to use @code{\repeat} for repetitions.  See
1289 @ref{Repeats}.
1290
1291
1292
1293 @seealso
1294
1295 In this manual: @ref{Repeats}, @ref{System start delimiters}
1296
1297
1298 Program reference: @internalsref{BarLine} (created at
1299 @internalsref{Staff} level), @internalsref{SpanBar} (across staves).
1300
1301 @cindex bar lines at start of system
1302 @cindex start of system
1303
1304
1305
1306 Examples: @inputfileref{input/test,bar-lines.ly},
1307
1308
1309 @node Time administration
1310 @subsection Time administration
1311
1312 Time is administered by the @internalsref{Time_signature_engraver},
1313 which usually lives in the @internalsref{Score} context.
1314 The bookkeeping deals with the following variables
1315
1316 @table @code
1317 @item currentBarNumber
1318  the measure number
1319 @item measureLength
1320   the length of the measures in the current time signature.  For a 4/4
1321   time this is 1, and for 6/8 it is 3/4.
1322 @item measurePosition
1323   the point within the measure where we currently are.  This quantity
1324   is reset to 0 whenever it exceeds @code{measureLength}.  When that happens,
1325   @code{currentBarNumber} is incremented.
1326 @item timing
1327  if set to true, the above variables are updated for every time
1328  step.  When set to false, the engraver stays in the current measure
1329  indefinitely.
1330 @end table
1331
1332 Timing can be changed by setting any of these variables explicitly.
1333 In the next example, the 4/4 time signature is printed, but
1334 @code{measureLength} is set to 5/4.  After a while, the measure is
1335 shortened by 1/8, by setting @code{measurePosition} to -3/8 at 2/4 in
1336 the measure, so the next bar line will fall at 2/4 + 3/8. 
1337
1338 @lilypond[verbatim]
1339 \relative {
1340   \set Score.measureLength = #(ly:make-moment 5 4)
1341   c1 c4
1342   c1 c4 
1343   c4 c4
1344   \set Score.measurePosition = #(ly:make-moment -3 8)
1345   b8 b b
1346   c4 c1
1347 }
1348 @end lilypond
1349
1350
1351 @node Controlling formatting of prefatory matter
1352 @subsection Controlling formatting of prefatory matter
1353
1354 TODO  Somebody needs to explain this example, but I don't know what
1355 they're trying to do, so it won't be me.  -gp
1356
1357 @lilypond[verbatim]
1358 \transpose c c' {
1359         \override Staff.Clef  #'break-visibility = #end-of-line-visible
1360         \override Staff.KeySignature  #'break-visibility = #end-of-line-visible
1361         \set Staff.explicitClefVisibility = #end-of-line-visible
1362         \set Staff.explicitKeySignatureVisibility = #end-of-line-visible
1363
1364         % We want the time sig to take space, otherwise there is not
1365         % enough white at the start of the line.
1366         %
1367         
1368         \override Staff.TimeSignature  #'transparent = ##t
1369         \set Score.defaultBarType = #"empty"
1370         
1371         c1 d e f g a b c
1372         \key d \major
1373         \break
1374
1375         % see above.
1376         \time 4/4
1377         
1378         d e fis g a b cis d 
1379         \key g \major
1380         \break
1381         \time 4/4    
1382 }
1383 @end lilypond
1384
1385
1386 @node Polyphony
1387 @section Polyphony
1388
1389 Polyphony in music refers to having more than one voice occuring in
1390 a piece of music.  Polyphony in LilyPond refers to having more than
1391 one voice on the same staff.
1392
1393 @menu
1394 * Writing polyphonic music::
1395 @end menu
1396
1397 @node Writing polyphonic music
1398 @subsection Writing polyphonic music
1399 @cindex polyphony
1400
1401 The easiest way to enter fragments with more than one voice on a staff
1402 is to split chords using the separator @code{\\}.  You can use it for
1403 small, short-lived voices or for single chords
1404
1405 @cindex @code{\\}
1406
1407 @lilypond[quote,verbatim,fragment]
1408 \context Staff \relative c'' {
1409   c4 << { f d e  } \\ { b c2 } >>
1410   c4 << g' \\ b, \\  f' \\ d >>
1411 }
1412 @end lilypond
1413
1414 The separator causes @internalsref{Voice} contexts@footnote{Polyphonic
1415 voices are sometimes called ``layers'' in other notation packages}
1416 @cindex layers
1417 to be instantiated.  They bear the names @code{"1"}, @code{"2"}, etc.  In
1418 each of these contexts, vertical direction of slurs, stems, etc. is set
1419 appropriately.
1420
1421 @cindex @code{\voiceOne}
1422 @cindex @code{\voiceFour}
1423
1424 This can also be done by instantiating @internalsref{Voice} contexts
1425 by hand, and using @code{\voiceOne}, up to @code{\voiceFour} to assign
1426 a stem directions and horizontal shift for each part
1427 @c
1428
1429 @lilypond[quote,raggedright,verbatim]
1430 \relative c''
1431 \context Staff <<
1432   \new Voice { \voiceOne cis2 b  }
1433   \new Voice { \voiceThree b4 ais ~ ais4 gis4 } 
1434   \new Voice { \voiceTwo fis4~  fis4 f ~ f  } >>
1435 @end lilypond
1436
1437 @noindent
1438 The command @code{\oneVoice} will revert back to the normal setting.
1439 @cindex @code{\oneVoice}
1440
1441
1442 Normally, note heads with a different number of dots are not merged, but
1443 when the object property @code{merge-differently-dotted} is set in
1444 the @internalsref{NoteCollision} object, they are merged
1445 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
1446 \context Voice << {
1447   g8 g8 
1448   \override Staff.NoteCollision  
1449     #'merge-differently-dotted = ##t
1450   g8 g8
1451 } \\ { g8.[ f16] g8.[ f16] } >>
1452 @end lilypond
1453
1454 Similarly, you can merge half note heads with eighth notes, by setting
1455 @code{merge-differently-headed}
1456 @lilypond[quote,fragment,relative=2,verbatim]
1457 \context Voice << {
1458   c8 c4.
1459   \override Staff.NoteCollision
1460     #'merge-differently-headed = ##t
1461 c8 c4. } \\ { c2 c2 } >>
1462 @end lilypond
1463
1464 LilyPond also vertically shifts rests that are opposite of a stem,
1465 for example
1466
1467 @lilypond[quote,raggedright,fragment,verbatim]
1468 \context Voice << c''4 \\  r4 >>
1469 @end lilypond
1470
1471
1472 @refcommands
1473
1474
1475
1476 @cindex @code{\oneVoice}
1477 @code{\oneVoice}, 
1478 @cindex @code{\voiceOne}
1479 @code{\voiceOne}, 
1480 @cindex @code{\voiceTwo}
1481 @code{\voiceTwo}, 
1482 @cindex @code{\voiceThree}
1483 @code{\voiceThree}, 
1484 @cindex @code{\voiceFour}
1485 @code{\voiceFour}.
1486
1487
1488
1489 @cindex @code{\shiftOn}
1490 @code{\shiftOn}, 
1491 @cindex @code{\shiftOnn}
1492 @code{\shiftOnn}, 
1493 @cindex @code{\shiftOnnn}
1494 @code{\shiftOnnn}, 
1495 @cindex @code{\shiftOff}
1496 @code{\shiftOff}: these commands specify in what chords of the current
1497 voice should be shifted.  The outer voices (normally: voice one and
1498 two) have @code{\shiftOff}, while the inner voices (three and four)
1499 have @code{\shiftOn}.  @code{\shiftOnn} and @code{\shiftOnnn} define
1500 further shift levels.
1501
1502
1503 When LilyPond cannot cope, the @code{force-hshift}
1504 property of the @internalsref{NoteColumn} object and pitched rests can
1505 be used to override typesetting decisions.
1506
1507 @lilypond[verbatim,raggedright]
1508 \relative <<
1509 {
1510   <d g>
1511   <d g>
1512 } \\ {
1513   <b f'>
1514   \once \override NoteColumn  #'force-hshift = #1.7
1515   <b f'>
1516 } >> 
1517 @end lilypond
1518
1519
1520
1521 @seealso
1522
1523 Program reference: the objects responsible for resolving collisions are
1524 @internalsref{NoteCollision} and @internalsref{RestCollision}.
1525
1526 Examples: 
1527 @inputfileref{input/regression,collision-dots.ly},
1528 @inputfileref{input/regression,collision-head-chords.ly},
1529 @inputfileref{input/regression,collision-heads.ly},
1530 @inputfileref{input/regression,collision-mesh.ly}, and
1531 @inputfileref{input/regression,collisions.ly}.
1532
1533
1534 @refbugs
1535
1536
1537 When using @code{merge-differently-headed} with an upstem eighth or a
1538 shorter note, and a downstem half note, the eighth note gets the wrong
1539 offset.
1540
1541 There is no support for clusters where the same note occurs with
1542 different accidentals in the same chord.  In this case, it is
1543 recommended to use enharmonic transcription, or to use special cluster
1544 notation (see @ref{Clusters}).
1545
1546 @node Beaming
1547 @section Beaming
1548
1549 Beams are used to group short notes into chunks that are aligned with
1550 the metrum.  LilyPond normally inserts beams automatically, but if you
1551 wish you may control them manually or changed how beams are automatically
1552 grouped.
1553
1554 @cindex Automatic beams
1555 @menu
1556 * Automatic beams::
1557 * Manual beams::                
1558 * Setting automatic beam behavior::  
1559 * Beam formatting::             
1560 @end menu
1561
1562 @node Automatic beams
1563 @subsection Automatic beams
1564
1565 LilyPond inserts beams automatically
1566
1567 @lilypond[quote,fragment,verbatim,relative=2]
1568 \time 2/4 c8 c c c \time 6/8 c c c c8. c16  c8
1569 @end lilypond
1570
1571 When these automatic decisions are not good enough, beaming can be
1572 entered explicitly.  It is also possible to define beaming patterns
1573 that differ from the defaults.
1574
1575 Individual notes may be marked with @code{\noBeam}, to prevent them
1576 from being beamed
1577
1578 @lilypond[quote,fragment,verbatim,relative=2]
1579 \time 2/4 c8 c\noBeam c c
1580 @end lilypond
1581
1582
1583 @seealso
1584
1585 Program reference: @internalsref{Beam}. 
1586
1587
1588 @node Manual beams
1589 @subsection Manual beams
1590 @cindex beams, manual
1591 @cindex @code{]}
1592 @cindex @code{[}
1593
1594 In some cases it may be necessary to override the automatic beaming
1595 algorithm.  For example, the autobeamer will not put beams over rests
1596 or bar lines.  Such beams are specified manually by marking the begin
1597 and end point with @code{[} and @code{]}
1598
1599 @lilypond[quote,fragment,relative=1,verbatim]
1600 {
1601   r4 r8[ g' a r8] r8 g[ | a] r8
1602 }
1603 @end lilypond
1604
1605 @cindex @code{stemLeftBeamCount}
1606
1607 Normally, beaming patterns within a beam are determined automatically.
1608 If necessary, the properties @code{stemLeftBeamCount} and
1609 @code{stemRightBeamCount} can be used to override the defaults.  If
1610 either property is set, its value will be used only once, and then it
1611 is erased
1612
1613 @lilypond[quote,fragment,relative=1,verbatim]
1614 {
1615    f8[ r16
1616       f g a]
1617    f8[ r16
1618    \set stemLeftBeamCount = #1
1619       f g a]
1620 }
1621 @end lilypond
1622 @cindex @code{stemRightBeamCount}
1623
1624
1625 The property @code{subdivideBeams} can be set in order to subdivide
1626 all 16th or shorter beams at beat positions, as defined by the
1627 @code{beatLength} property.
1628
1629
1630 @lilypond[fragment,quote,relative=2,verbatim,noindent]
1631 c16[ c c c c c c c]
1632 \set subdivideBeams = ##t
1633 c16[ c c c c c c c]
1634 \set Score.beatLength = #(ly:make-moment 1 8)
1635 c16[ c c c c c c c]
1636 @end lilypond
1637 @cindex @code{subdivideBeams}
1638
1639 Normally, line breaks are forbidden when beams cross bar lines.  This
1640 behavior can be changed by setting @code{allowBeamBreak}.
1641
1642 @cindex @code{allowBeamBreak}
1643 @cindex beams and line breaks
1644
1645 @cindex beams, kneed
1646 @cindex kneed beams
1647 @cindex auto-knee-gap
1648
1649
1650 @seealso
1651
1652 User manual: @ref{Changing context properties on the fly} for the
1653 @code{\set} command
1654
1655
1656 @refbugs
1657
1658 @cindex Frenched staves
1659 Kneed beams are inserted automatically, when a large gap is detected
1660 between the note heads.  This behavior can be tuned through the object.
1661
1662
1663 Automatically kneed cross-staff beams cannot be used together with
1664 hidden staves.  See @ref{Hiding staves}.
1665
1666 Beams do not avoid collisions with symbols around the notes, such as
1667 texts and accidentals.
1668
1669 @c FIXME.
1670
1671
1672 @node Setting automatic beam behavior
1673 @subsection Setting automatic beam behavior 
1674
1675 @cindex @code{autoBeamSettings}
1676 @cindex @code{(end * * * *)}
1677 @cindex @code{(begin * * * *)}
1678 @cindex automatic beams, tuning
1679 @cindex tuning automatic beaming
1680
1681 @c [TODO: use \applycontext]
1682
1683 In normal time signatures, automatic beams can start on any note but can
1684 only end in a few positions within the measure: beams can end on a beat,
1685 or at durations specified by the properties in
1686 @code{autoBeamSettings}.  The defaults for @code{autoBeamSettings}
1687 are defined in @file{scm/auto-beam.scm}.
1688
1689 The value of @code{autoBeamSettings} is changed with two functions,
1690 @example
1691   #(override-auto-beam-setting
1692      '(@var{be} @var{p} @var{q} @var{n} @var{m}) @var{a} @var{b}
1693      [@var{context}])
1694   #(revert-auto-beam-setting '(@var{be} @var{p} @var{q} @var{n} @var{m}))
1695 @end example
1696 Here, @var{be} is the symbol @code{begin} or @code{end}, and
1697 @var{context} is an optional context (default: @code{'Voice}).  It
1698 determines whether the rule applies to begin or end-points.  The
1699 quantity @var{p}/@var{q} refers to the length of the beamed notes (and
1700 `@code{* *}' designates notes of any length), @var{n}/@var{M} refers
1701 to a time signature (wildcards `@code{* *}' may be entered to
1702 designate all time signatures), @var{a}/@var{b} is a duration.  By
1703 default, this command changes settings for the current voice.  It is
1704 also possible to adjust settings at higher contexts, by adding a
1705 @var{context} argument.
1706
1707 For example, if automatic beams should end on every quarter note, use
1708 the following
1709 @example
1710    #(override-auto-beam-setting '(end * * * *) 1 4 'Staff)
1711 @end example
1712 Since the duration of a quarter note is 1/4 of a whole note, it is
1713 entered as @code{(ly:make-moment 1 4)}.
1714
1715 The same syntax can be used to specify beam starting points.  In this
1716 example, automatic beams can only end on a dotted quarter note
1717 @example
1718    #(override-auto-beam-setting '(end * * * *) 3 8)
1719 @end example
1720 In 4/4 time signature, this means that automatic beams could end only on
1721 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
1722 3/8, has passed within the measure).
1723
1724 Rules can also be restricted to specific time signatures.  A rule that
1725 should only be applied in @var{N}/@var{M} time signature is formed by
1726 replacing the second asterisks by @var{N} and @var{M}.  For example, a
1727 rule for 6/8 time exclusively looks like
1728 @example
1729  #(override-auto-beam-setting '(begin * * 6 8) @dots{})
1730 @end example
1731
1732 If a rule should be to applied only to certain types of beams, use the
1733 first pair of asterisks.  Beams are classified according to the
1734 shortest note they contain.  For a beam ending rule that only applies
1735 to beams with 32nd notes (and no shorter notes), use @code{(end 1 32 *
1736 *)}.
1737
1738 @cindex automatic beam generation
1739 @cindex autobeam
1740 @cindex @code{autoBeaming}
1741 @cindex lyrics
1742
1743 If beams are used to indicate melismata in songs, then automatic
1744 beaming should be switched off.  This is done by setting
1745 @code{autoBeaming} to @code{#f}.
1746
1747 @refcommands
1748
1749 @cindex @code{\autoBeamOff}
1750 @code{\autoBeamOff}, 
1751 @cindex @code{\autoBeamOn}
1752 @code{\autoBeamOn}.
1753
1754
1755 @refbugs
1756
1757 If a score ends while an automatic beam has not been ended and is
1758 still accepting notes, this last beam will not be typeset at all.  The
1759 same holds polyphonic voices, entered with @code{<< @dots{} \\ @dots{}
1760 >>}.  If a polyphonic voice ends while an automatic beam is still
1761 accepting notes, it is not typeset.
1762
1763 The rules for ending a beam depend on the shortest note in a beam.
1764 So, while it is possible to have different ending rules for eight
1765 beams and sixteenth beams, a beam that contains both eight and
1766 sixteenth notes will use the rules for the sixteenth beam.
1767
1768 In the example below, the autobeamer makes eighth beams and sixteenth
1769 end at three eighths.  The third beam can only be corrected by
1770 specifying manual beaming.
1771
1772 @lilypond[quote,raggedright,fragment,relative=1]
1773 #(override-auto-beam-setting '(end * * * *) 3 8)
1774 % rather show case where it goes wrong
1775 %\time 12/8 c'8 c c c16 c c c c c c[ c c c] c8[ c] c4
1776 \time 12/8 c'8 c c c16 c c c c c c c c c c8 c c4
1777 @end lilypond
1778 It is not possible to specify beaming parameters that act differently in
1779 different parts of a measure.  This means that it is not possible to use
1780 automatic beaming in irregular meters such as @code{5/8}.
1781
1782 @node Beam formatting
1783 @subsection Beam formatting
1784
1785
1786 When a beam falls in the middle of the staff, the beams point normally
1787 down.  However, this behaviour can be altered with the
1788 @code{neutral-direction} property.
1789
1790
1791 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1792 {
1793    b8[ b]
1794   \override Beam  #'neutral-direction = #-1
1795    b[ b]
1796   \override Beam  #'neutral-direction = #1
1797    b[ b]
1798 }
1799 @end lilypond
1800
1801 @node Accidentals
1802 @section Accidentals
1803
1804 This section describes how to change the way that accidentals are
1805 inserted automatically before notes.
1806
1807 @menu
1808 * Automatic accidentals::
1809 @end menu
1810
1811 @node Automatic accidentals
1812 @subsection Automatic accidentals
1813 @cindex Automatic accidentals
1814
1815 Common rules for typesetting accidents have been placed in a
1816 function.  This function is called as follows
1817
1818 @cindex @code{set-accidental-style}
1819 @example
1820 #(set-accidental-style 'STYLE #('CONTEXT#))
1821 @end example
1822
1823 The function can take two arguments: the name of the accidental style,
1824 and an optional argument that denotes the context which should be
1825 changed.  If no context name is supplied, @code{Staff} is the default,
1826 but you may wish to apply the accidental style to a single @code{Voice}
1827 instead.
1828
1829 The following accidental styles are supported
1830 @table @code
1831 @item default
1832 This is the default typesetting behavior.  It corresponds
1833 to 18th century common practice: Accidentals are
1834 remembered to the end of the measure in which they occur and
1835 only on their own octave.
1836
1837 @item voice
1838 The normal behavior is to remember the accidentals on
1839 Staff-level.  This variable, however, typesets accidentals
1840 individually for each voice.  Apart from that, the rule is similar to
1841 @code{default}.
1842
1843 As a result, accidentals from one voice do not get canceled in other
1844 voices, which is often an unwanted result
1845
1846 @lilypond[quote,raggedright,relative=1,fragment,verbatim]
1847 \context Staff <<
1848   #(set-accidental-style 'voice)
1849   <<
1850     { es g } \\
1851     { c, e }
1852 >> >>
1853 @end lilypond
1854
1855 The @code{voice} option should be used if the voices
1856 are to be read solely by individual musicians.  If the staff is to be
1857 used by one musician (e.g. a conductor) then 
1858 @code{modern} or @code{modern-cautionary}
1859 should be used instead.
1860
1861 @item modern
1862 @cindex @code{modern} style accidentals
1863 This rule corresponds to the common practice in the 20th century.  This rule
1864 prints the same accidentals as @code{default}, but temporary
1865 accidentals also are canceled in other octaves.  Furthermore,
1866 in the same octave, they also get canceled in the following
1867 measure
1868
1869 @lilypond[quote,raggedright,fragment,verbatim]
1870 #(set-accidental-style 'modern)
1871 cis' c'' cis'2 | c'' c'
1872 @end lilypond
1873
1874 @item @code{modern-cautionary}
1875 @cindex @code{modern-cautionary}
1876 This rule is similar to @code{modern}, but the ``extra'' accidentals
1877 (the ones not typeset by @code{default}) are typeset as cautionary
1878 accidentals.  They are printed in reduced size or with parentheses
1879 @lilypond[quote,raggedright,fragment,verbatim]
1880 #(set-accidental-style 'modern-cautionary)
1881 cis' c'' cis'2 | c'' c'
1882 @end lilypond
1883
1884 @cindex @code{modern-voice}
1885 @item modern-voice
1886 This rule is used for multivoice accidentals to be read both by musicians
1887 playing one voice and musicians playing all voices.  Accidentals are
1888 typeset for each voice, but they @emph{are} canceled across voices in
1889 the same @internalsref{Staff}.
1890
1891 @cindex @code{modern-voice-cautionary}
1892 @item modern-voice-cautionary
1893 This rule is the same as @code{modern-voice}, but with the extra
1894 accidentals (the ones not typeset by @code{voice}) typeset
1895 as cautionaries.  Even though all accidentals typeset by
1896 @code{default} @emph{are} typeset by this variable then
1897 some of them are typeset as cautionaries.
1898
1899 @item piano
1900 @cindex @code{piano} accidentals
1901 This rule reflects 20th century practice for piano notation.  Very similar to
1902 @code{modern} but accidentals also get canceled
1903 across the staves in the same @internalsref{GrandStaff} or
1904 @internalsref{PianoStaff}.
1905
1906 @item piano-cautionary
1907 @cindex @code{#(set-accidental-style 'piano-cautionary)}
1908 As @code{#(set-accidental-style 'piano)} but with the extra accidentals
1909 typeset as cautionaries.
1910
1911 @item no-reset
1912 @cindex @code{no-reset} accidental style
1913 This is the same as @code{default} but with accidentals lasting
1914 ``forever'' and not only until the next measure
1915 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1916 #(set-accidental-style 'no-reset)
1917 c1 cis cis c
1918 @end lilypond
1919
1920 @item forget
1921 This is sort of the opposite of @code{no-reset}: Accidentals
1922 are not remembered at all---and hence all accidentals are
1923 typeset relative to the key signature, regardless of what was
1924 before in the music
1925       
1926 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1927 #(set-accidental-style 'forget)
1928 \key d\major c4 c cis cis d d dis dis
1929 @end lilypond
1930 @end table
1931
1932
1933 @seealso
1934
1935 Program reference: @internalsref{Accidental_engraver},
1936 @internalsref{Accidental}, and @internalsref{AccidentalPlacement}.
1937
1938
1939 @refbugs
1940
1941 Simultaneous notes are considered to be entered in sequential
1942 mode.  This means that in a chord the accidentals are typeset as if the
1943 notes in the chord happened once at a time - in the order in which
1944 they appear in the input file.
1945
1946 This is a problem when accidentals in a chord depend on each other,
1947 which does not happen for the default accidental style.  The problem
1948 can be solved by manually inserting @code{!} and @code{?}  for the
1949 problematic notes.
1950
1951
1952 @node Expressive marks
1953 @section Expressive marks
1954
1955
1956 @c todo: should change ordering
1957 @c where to put text spanners, metronome marks,
1958 @c fingering?
1959
1960 Expressive marks help musicians to bring more to the music than simple
1961 notes and rhythms.
1962
1963 @menu
1964 * Slurs::                       
1965 * Phrasing slurs::              
1966 * Breath marks::                
1967 * Metronome marks::             
1968 * Text scripts::                
1969 * Text spanners::               
1970 * Analysis brackets::           
1971 * Articulations::               
1972 * Running trills::              
1973 * Fingering instructions::      
1974 * Grace notes::                 
1975 * Glissando::                   
1976 * Dynamics::                    
1977 @end menu
1978
1979 @node Slurs
1980 @subsection Slurs
1981 @cindex Slurs
1982
1983 A slur indicates that notes are to be played bound or @emph{legato}.
1984
1985 They are entered using parentheses
1986 @lilypond[quote,relative=2,fragment,verbatim]
1987   f( g a) a8 b( a4 g2 f4)
1988   <c e>2( <b d>2)
1989 @end lilypond
1990
1991 The direction of a slur can be set with the
1992 generic commands
1993
1994 @example
1995   \override Slur #'direction = #UP
1996   \slurUp            % shortcut for the previous line 
1997 @end example
1998
1999 @noindent
2000 However, there is a convenient shorthand for forcing slur
2001 directions.  By adding @code{_} or @code{^} before the opening
2002 parentheses, the direction is also set.  For example,  
2003
2004 @lilypond[relative=2,verbatim,fragment]
2005   c4_( c)   c^( c)
2006 @end lilypond
2007
2008 Some composers write two slurs when they want legato chords.  This can
2009 be achieved in LilyPond by setting @code{doubleSlurs},
2010
2011 @lilypond[verbatim,raggedright]
2012 \relative {
2013    \set doubleSlurs = ##t
2014    <c e>4 ( <d f> <c e> <d f> )
2015 }
2016 @end lilypond  
2017
2018  
2019 @refcommands
2020
2021
2022 @cindex @code{\slurUp}
2023 @code{\slurUp}, 
2024 @cindex @code{\slurDown}
2025 @code{\slurDown}, 
2026 @cindex @code{\slurNeutral}
2027 @code{\slurNeutral}, 
2028 @cindex @code{\slurDotted}
2029 @code{\slurDotted}, 
2030 @cindex @code{\slurSolid}
2031 @code{\slurSolid}.
2032
2033 @seealso
2034
2035 Program reference: @seeinternals{Slur}, and @internalsref{SlurEvent}.
2036
2037
2038 @node Phrasing slurs
2039 @subsection Phrasing slurs
2040
2041 @cindex phrasing slurs
2042 @cindex phrasing marks
2043
2044 A phrasing slur (or phrasing mark) connects chords and is used to
2045 indicate a musical sentence.  It is written using @code{\(} and @code{\)}
2046 respectively
2047
2048 @lilypond[quote,fragment,verbatim,relative=1]
2049   \time 6/4 c'\( d( e) f( e)  d\) 
2050 @end lilypond
2051
2052 Typographically, the phrasing slur behaves almost exactly like a
2053 normal slur.  However, they are treated as different objects.  A
2054 @code{\slurUp} will have no effect on a phrasing slur; instead, use
2055 @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
2056 @code{\phrasingSlurNeutral}.
2057
2058 The commands @code{\slurUp}, @code{\slurDown}, and @code{\slurNeutral}
2059 will only affect normal slurs and not phrasing slurs.
2060
2061 @refcommands
2062
2063 @cindex @code{\phrasingSlurUp}
2064 @code{\phrasingSlurUp}, 
2065 @cindex @code{\phrasingSlurDown}
2066 @code{\phrasingSlurDown}, 
2067 @cindex @code{\phrasingSlurNeutral}
2068 @code{\phrasingSlurNeutral}.
2069
2070 @seealso
2071
2072 Program reference: see also @internalsref{PhrasingSlur}, and
2073 @internalsref{PhrasingSlurEvent}.
2074
2075 @refbugs
2076
2077 Putting phrasing slurs over rests leads to spurious warnings.
2078
2079 @node Breath marks
2080 @subsection Breath marks
2081
2082 Breath marks are entered using @code{\breathe}
2083
2084
2085 @lilypond[quote,fragment,relative=1,verbatim]
2086   c'4 \breathe d4
2087 @end lilypond
2088
2089 The glyph of the breath mark can be tuned by overriding the
2090 @code{text} property of the @code{BreathingSign} layout object with
2091 any markup text.  For example,
2092 @lilypond[quote,fragment,verbatim,relative=1]
2093   c'4
2094   \override BreathingSign #'text
2095     = #(make-musicglyph-markup "scripts-rvarcomma")
2096   \breathe
2097   d4
2098 @end lilypond
2099
2100 @seealso 
2101
2102 Program reference: @internalsref{BreathingSign},
2103 @internalsref{BreathingSignEvent}.
2104
2105 Examples: @inputfileref{input/regression,breathing-sign.ly}.
2106
2107
2108 @node Metronome marks
2109 @subsection Metronome marks
2110
2111 @cindex Tempo
2112 @cindex beats per minute
2113 @cindex metronome marking
2114
2115 Metronome settings can be entered as follows
2116 @example 
2117   \tempo @var{duration} = @var{per-minute} 
2118 @end example
2119
2120 In the MIDI output, they are interpreted as a tempo change.  In the
2121 paper output, a metronome marking is printed
2122 @cindex @code{\tempo}
2123 @lilypond[quote,verbatim,fragment]
2124   \tempo 8.=120 c''1
2125 @end lilypond
2126
2127 @seealso
2128
2129 Program reference: @internalsref{MetronomeChangeEvent}.
2130   
2131
2132 @node Text scripts
2133 @subsection Text scripts
2134 @cindex Text scripts
2135
2136 @cindex text items, non-empty
2137 @cindex non-empty texts
2138
2139 It is possible to place arbitrary strings of text or markup text (see
2140 @ref{Text markup}) above or below notes by using a string
2141 @code{c^"text"}.  By default, these indications do not influence the
2142 note spacing, but by using the command @code{\fatText}, the widths
2143 will be taken into account
2144 @c
2145 @lilypond[quote,fragment,raggedright,verbatim,relative=1]
2146   c4^"longtext" \fatText c4_"longlongtext" c4
2147 @end lilypond
2148
2149 More complex formatting may also be added to a note by using the
2150 markup command,
2151 @lilypond[fragment,raggedright,verbatim]
2152   c'4^\markup { bla \bold bla }
2153 @end lilypond
2154
2155 The @code{\markup} is described in more detail in
2156 @ref{Text markup}.
2157  
2158
2159 @refcommands
2160
2161 @cindex @code{\fatText}
2162 @code{\fatText}, 
2163 @cindex @code{\emptyText}
2164 @code{\emptyText}.
2165
2166 @seealso
2167
2168 In this manual: @ref{Text markup}.
2169
2170 Program reference: @internalsref{TextScriptEvent}, @internalsref{TextScript}.
2171
2172
2173 @node Text spanners
2174 @subsection Text spanners
2175 @cindex Text spanners
2176
2177 Some performance indications, e.g. @i{rallentando} or @i{accelerando},
2178 are written as text and are extended over many measures with dotted
2179 lines.  Such texts are created using text spanners; attach
2180 @code{\startTextSpan} and @code{\stopTextSpan} to the first and last
2181 notes of the spanner.
2182
2183 The string to be printed, as well as the style, is set through object
2184 properties
2185
2186 @lilypond[quote,fragment,relative=1,verbatim]
2187   c1 
2188   \override TextSpanner #'direction = #-1
2189   \override TextSpanner #'edge-text = #'("rall " . "")
2190   c2\startTextSpan b c\stopTextSpan a
2191 @end lilypond
2192
2193
2194 @seealso
2195
2196 Internals @internalsref{TextSpanEvent},
2197 @internalsref{TextSpanner}.
2198
2199 Examples: @inputfileref{input/regression,text-spanner.ly}.
2200
2201
2202 @node Analysis brackets
2203 @subsection Analysis brackets
2204 @cindex brackets
2205 @cindex phrasing brackets
2206 @cindex musicological analysis
2207 @cindex note grouping bracket
2208
2209 Brackets are used in musical analysis to indicate structure in musical
2210 pieces.  LilyPond supports a simple form of nested horizontal
2211 brackets.  To use this, add the @internalsref{Horizontal_bracket_engraver}
2212 to @internalsref{Staff} context.  A bracket is started with
2213 @code{\startGroup} and closed with @code{\stopGroup}
2214
2215 @lilypond[quote,raggedright,verbatim]
2216 \score {
2217   \relative c'' {  
2218     c4\startGroup\startGroup
2219     c4\stopGroup
2220     c4\startGroup
2221     c4\stopGroup\stopGroup
2222   }
2223   \paper {
2224     \context {
2225       \Staff \consists "Horizontal_bracket_engraver"
2226 }}}
2227 @end lilypond
2228
2229 @seealso
2230
2231 Program reference: @internalsref{HorizontalBracket},
2232 @internalsref{NoteGroupingEvent}.
2233
2234 Examples: @inputfileref{input/regression,note-group-bracket.ly}. 
2235
2236
2237 @node Articulations
2238 @subsection Articulations
2239 @cindex Articulations
2240
2241 @cindex articulations
2242 @cindex scripts
2243 @cindex ornaments
2244
2245 A variety of symbols can appear above and below notes to indicate
2246 different characteristics of the performance.  They are added to a note
2247 by adding a dash and the character signifying the
2248 articulation.  They are demonstrated here
2249
2250 @lilypondfile[quote,raggedright]{script-abbreviations.ly}
2251
2252 The meanings of these shorthands can be changed.  See
2253 @file{ly/script-init.ly} for examples.
2254
2255
2256 The script is automatically placed, but the direction can be forced as
2257 well.  Like other pieces of LilyPond code, @code{_} will place them
2258 below the staff, and @code{^} will place them above.
2259
2260
2261 @lilypond[quote,fragment,verbatim]
2262   c''4^^ c''4_^
2263 @end lilypond
2264
2265 Other symbols can be added using the syntax
2266 @var{note}@code{\}@var{name}.  Again, they
2267 can be forced up or down using @code{^} and @code{_},
2268 e.g.
2269
2270 @lilypond[quote,verbatim,fragment,relative=2]
2271   c\fermata c^\fermata c_\fermata
2272 @end lilypond
2273
2274
2275
2276 @cindex accent
2277 @cindex marcato
2278 @cindex staccatissimo
2279 @cindex fermata
2280 @cindex stopped
2281 @cindex staccato
2282 @cindex portato
2283 @cindex tenuto
2284 @cindex upbow
2285 @cindex downbow
2286 @cindex foot marks
2287 @cindex organ pedal marks
2288 @cindex turn
2289 @cindex open
2290 @cindex flageolet
2291 @cindex reverseturn
2292 @cindex trill
2293 @cindex prall
2294 @cindex mordent
2295 @cindex prallprall
2296 @cindex prallmordent
2297 @cindex prall, up
2298 @cindex prall, down
2299 @cindex mordent
2300 @cindex thumb marking
2301 @cindex segno
2302 @cindex coda
2303 @cindex varcoda
2304
2305 Here is a chart showing all scripts available,
2306
2307 @lilypondfile[quote]{script-chart.ly}
2308
2309
2310 The vertical ordering of scripts is controlled with the
2311 @code{script-priority} property.  The lower this number, the closer it
2312 will be put to the note.  In this example, the
2313 @internalsref{TextScript} (the sharp symbol) first has the lowest
2314 priority, so it is put lowest in the first example.  In the second, the
2315 prall trill (the @internalsref{Script}) has the lowest, so it on the
2316 inside.  When two objects have the same priority, the order in which
2317 they are entered decides which one comes first.
2318
2319
2320 @lilypond[verbatim,relative=3,raggedright,fragment,quote]
2321   \once \override TextScript #'script-priority = #-100
2322   a4^\prall^\markup { \sharp }
2323     
2324   \once \override Script  #'script-priority = #-100
2325   a4^\prall^\markup { \sharp }
2326 @end lilypond
2327
2328
2329
2330
2331 @seealso
2332
2333 Program reference: @internalsref{ScriptEvent}, and @internalsref{Script}.
2334
2335 @refbugs
2336
2337 These signs appear in the printed output but have no effect on the
2338 MIDI rendering of the music.
2339
2340
2341
2342 @node  Running trills
2343 @subsection Running trills
2344
2345 Long running trills are made with @code{\startTrillSpan} and
2346 @code{\stopTrillSpan},
2347
2348
2349 @lilypond[verbatim,raggedright,relative=2,quote,fragment]
2350 \new Voice {
2351   << { c1 \startTrillSpan }
2352      { s2. \grace { d16[\stopTrillSpan e] } } >>
2353   c4 }
2354 @end lilypond
2355
2356 @refcommands
2357
2358 @code{\startTrillSpan},
2359 @cindex @code{\startTrillSpan}
2360 @code{\stopTrillSpan}.
2361 @cindex @code{\stopTrillSpan}
2362
2363 @seealso
2364
2365 Program reference: @internalsref{TrillSpanner},
2366 @internalsref{TrillSpanEvent}.
2367
2368 @node Fingering instructions
2369 @subsection Fingering instructions
2370
2371 @cindex fingering
2372
2373 Fingering instructions can be entered using
2374 @example
2375   @var{note}-@var{digit}
2376 @end example
2377 For finger changes, use markup texts
2378 @c
2379 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2380   c4-1 c-2 c-3 c-4
2381   c^\markup { \finger "2-3" }
2382 @end lilypond
2383
2384 @cindex finger change
2385 @cindex scripts
2386 @cindex superscript
2387 @cindex subscript
2388
2389 You can use the thumb-script to indicate that a note should be
2390 played with the thumb (e.g. in cello music)
2391
2392 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2393   <a_\thumb a'-3>8 <b_\thumb b'-3>
2394 @end lilypond
2395
2396 Fingerings for chords can also be added to individual notes
2397 of the chord by adding them after the pitches
2398 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2399   < c-1 e-2 g-3 b-5 >4
2400 @end lilypond
2401
2402 @noindent
2403 In this case, setting @code{fingeringOrientations} will put fingerings next
2404 to note heads
2405
2406 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2407   \set fingeringOrientations = #'(left down)
2408   <c-1 es-2 g-4 bes-5 > 4
2409   \set fingeringOrientations = #'(up right down)
2410   <c-1 es-2 g-4 bes-5 > 4
2411 @end lilypond
2412
2413 Using this feature, it is also possible to put fingering instructions
2414 very close to note heads in monophonic music,
2415
2416 @lilypond[verbatim,raggedright]
2417 {
2418   \set fingeringOrientations = #'(right)
2419   <es'-2>4
2420 }
2421 @end lilypond
2422
2423         
2424 @seealso
2425
2426 Program reference: @internalsref{FingerEvent}, and @internalsref{Fingering}.
2427
2428 Examples: @inputfileref{input/regression,finger-chords.ly}.
2429
2430
2431
2432
2433 @node Grace notes
2434 @subsection Grace notes
2435
2436
2437 @c should have blurb about accaciatura / appogiatura
2438
2439 @cindex @code{\grace}
2440 @cindex ornaments
2441 @cindex grace notes
2442
2443 Grace notes are ornaments that are written out.  The most common ones
2444 are acciaccatura, which should be played as very short.  It is denoted
2445 by a slurred small note with a slashed stem.  The appoggiatura is a
2446 grace note that takes a fixed fraction of the main note, and is
2447 denoted as a slurred note in small print without a slash.  They
2448 are entered with the commands @code{\acciaccatura} and
2449 @code{\appoggiatura}, as demonstrated in the following example
2450
2451
2452 @cindex appoggiatura
2453 @cindex acciaccatura
2454
2455 @lilypond[quote,relative=2,verbatim,fragment]
2456   b4 \acciaccatura d8 c4 \appoggiatura e8 d4
2457   \acciaccatura { g16[ f] } e4
2458 @end lilypond
2459
2460 Both are special forms of the @code{\grace} command.  By prefixing this
2461 keyword to a music expression, a new one is formed, which will be
2462 printed in a smaller font and takes up no logical time in a measure.
2463
2464 @lilypond[quote,relative=2,verbatim,fragment]
2465   c4 \grace c16 c4
2466   \grace { c16[ d16] } c2 c4
2467 @end lilypond
2468
2469 @noindent
2470 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
2471 @code{\grace} command does not start a slur.
2472
2473 Internally, timing for grace notes is done using a second, `grace'
2474 time.  Every point in time consists of two rational numbers: one
2475 denotes the logical time, one denotes the grace timing.  The above
2476 example is shown here with timing tuples
2477
2478 @lilypond[quote,raggedright]
2479 <<
2480   \relative c''{ 
2481     c4 \grace c16  c4  \grace {
2482     c16[  d16] } c2 c4
2483   }
2484   \new Lyrics \lyricmode {
2485     \override LyricText #'font-family = #'typewriter
2486     
2487     \markup { (0,0) } 4
2488     \grace { \markup {
2489       ( \fraction 1 4 ,  \fraction -1 16 ) } 16 }
2490     \markup { (\fraction 1 4 , 0 ) } 4
2491     \grace {
2492       \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
2493       \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
2494     } 
2495     \markup { ( \fraction 2 4 , 0 ) }
2496   }
2497 >>
2498 @end lilypond
2499
2500
2501 The placement of grace notes is synchronized between different staves.
2502 In the following example, there are two sixteenth graces notes for
2503 every eighth grace note
2504
2505 @lilypond[quote,relative=2,verbatim,fragment] 
2506 << \new Staff { e4 \grace { c16[ d e f] } e4 }
2507    \new Staff { c4 \grace { g8[ b] } c4 } >>
2508 @end lilypond
2509
2510
2511
2512 If you want to end a note with a grace, the standard trick is to put
2513 the grace notes after a ``space note''
2514
2515 @lilypond[quote,fragment,verbatim,relative=2]
2516 \context Voice {
2517   << { d1^\trill_( }
2518      { s2 \grace { c16[ d] } } >>
2519   c4)
2520 }
2521 @end lilypond
2522
2523 @noindent
2524 By adjusting the duration of the skip note (here it is a half-note),
2525 the space between the main-note and the grace is adjusted.
2526
2527
2528 A @code{\grace} section will introduce special typesetting settings,
2529 for example, to produce smaller type, and set directions.  Hence, when
2530 introducing layout tweaks, they should be inside the grace section,
2531 for example,
2532 @lilypond[quote,fragment,verbatim,relative=2]
2533 \new Voice {
2534   \acciaccatura {
2535     \stemDown
2536     f16->
2537     \stemNeutral
2538   }
2539   g4
2540 }
2541 @end lilypond
2542
2543 @noindent
2544 The overrides should also be reverted inside the grace section.
2545
2546 The layout of grace sections can be changed throughout the music using
2547 the function @code{add-grace-property}.  The following example
2548 undefines the Stem direction for this grace, so stems do not always
2549 point up.
2550
2551 @example
2552 \new Staff @{
2553    #(add-grace-property 'Voice 'Stem 'direction '())
2554    @dots{}
2555 @}
2556 @end example
2557
2558 @noindent
2559 Another option is to change the variables @code{startGraceMusic},
2560 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
2561 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
2562 @code{stopAppoggiaturaMusic}.  More information is in the file
2563 @file{ly/grace-init.ly}.
2564
2565
2566 @seealso
2567
2568 Program reference: @internalsref{GraceMusic}.
2569
2570 @refbugs
2571
2572 A score that starts with a @code{\grace} section needs an explicit
2573 @code{\context Voice} declaration, otherwise the main note and grace
2574 note end up on different staves.
2575
2576 Grace note synchronization can also lead to surprises.  Staff notation,
2577 such as key signatures, bar lines, etc. are also synchronized.  Take
2578 care when you mix staves with grace notes and staves without, for example,
2579
2580 @lilypond[quote,relative=2,verbatim,fragment]
2581 << \new Staff { e4 \bar "|:" \grace c16 d4 }
2582    \new Staff { c4  \bar "|:"  d4 } >>
2583 @end lilypond
2584
2585 @noindent
2586 This can be remedied by inserting grace skips, for the above example
2587
2588 @example
2589 \new Staff @{ c4  \bar "|:"  \grace s16 d4 @} 
2590 @end example
2591
2592 Grace sections should only be used within sequential music
2593 expressions.  Nesting or juxtaposing grace sections is not supported,
2594 and might produce crashes or other errors.
2595
2596
2597 @node Glissando
2598 @subsection Glissando
2599 @cindex Glissando 
2600
2601 @cindex @code{\glissando}
2602
2603 A glissando is a smooth change in pitch.  It is denoted by a line or a
2604 wavy line between two notes.  It is requested by attaching 
2605 @code{\glissando} to a note
2606
2607 @lilypond[quote,fragment,relative=2,verbatim]
2608 c\glissando c'
2609 @end lilypond
2610
2611 @seealso
2612
2613 Program reference: @internalsref{Glissando}, and @internalsref{GlissandoEvent}.
2614
2615 Example files: @file{input/regression/glissando.ly}.
2616
2617  
2618
2619 @refbugs
2620
2621 Printing text over the line (such as @emph{gliss.}) is not supported.
2622
2623
2624 @node Dynamics
2625 @subsection Dynamics
2626 @cindex Dynamics
2627
2628
2629
2630 @cindex @code{\ppp}
2631 @cindex @code{\pp}
2632 @cindex @code{\p}
2633 @cindex @code{\mp}
2634 @cindex @code{\mf}
2635 @cindex @code{\f}
2636 @cindex @code{\ff}
2637 @cindex @code{\fff}
2638 @cindex @code{\ffff}
2639 @cindex @code{\fp}
2640 @cindex @code{\sf}
2641 @cindex @code{\sff}
2642 @cindex @code{\sp}
2643 @cindex @code{\spp}
2644 @cindex @code{\sfz}
2645 @cindex @code{\rfz}
2646
2647
2648 Absolute dynamic marks are specified using a command after a note
2649 @code{c4\ff}.  The available dynamic marks are @code{\ppp},
2650 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
2651 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
2652 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}
2653
2654 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2655   c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
2656   c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
2657 @end lilypond
2658
2659 @cindex @code{\<}
2660 @cindex @code{\>}
2661 @cindex @code{\"!}
2662
2663
2664
2665 A crescendo mark is started with @code{\<} and terminated with
2666 @code{\!}.  A decrescendo is started with @code{\>} and also terminated
2667 with @code{\!}.  Because these marks are bound to notes, if you must
2668 use spacer notes if multiple marks are needed during one note 
2669
2670 @lilypond[quote,fragment,verbatim,relative=2]
2671   c\< c\! d\> e\! 
2672   << f1 { s4 s4\< s4\! \> s4\! } >>
2673 @end lilypond
2674 This may give rise to very short hairpins.  Use @code{minimum-length}
2675 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
2676 example
2677
2678 @example
2679   \override Staff.Hairpin #'minimum-length = #5
2680 @end example
2681
2682 You can also use a text saying @emph{cresc.} instead of hairpins.  Here
2683 is an example how to do it
2684
2685 @lilypond[quote,fragment,relative=2,verbatim]
2686   \setTextCresc
2687   c \< d e f\!
2688   \setHairpinCresc
2689   e\> d c b\!
2690 @end lilypond
2691
2692 @cindex crescendo
2693 @cindex decrescendo
2694
2695 You can also supply your own texts
2696 @lilypond[quote,fragment,relative=1,verbatim]
2697   \set crescendoText = \markup { \italic "cresc. poco" }
2698   \set crescendoSpanner = #'dashed-line
2699   a'2\< a a a\!\mf
2700 @end lilypond
2701
2702 @cindex diminuendo
2703
2704
2705 @refcommands
2706
2707 @cindex @code{\dynamicUp}
2708 @code{\dynamicUp}, 
2709 @cindex @code{\dynamicDown}
2710 @code{\dynamicDown}, 
2711 @cindex @code{\dynamicNeutral}
2712 @code{\dynamicNeutral}.
2713
2714 @cindex direction, of dynamics
2715
2716 @seealso
2717
2718 Program reference: @internalsref{CrescendoEvent},
2719 @internalsref{DecrescendoEvent}, and
2720 @internalsref{AbsoluteDynamicEvent}.
2721
2722 Dynamics are @internalsref{DynamicText} and @internalsref{Hairpin}
2723 objects.  Vertical positioning of these symbols is handled by the
2724 @internalsref{DynamicLineSpanner} object.
2725
2726
2727 @node Repeats
2728 @section Repeats
2729
2730 Repetition is a central concept in music, and multiple notations exist
2731 for repetitions.
2732
2733 @menu
2734 * Repeat types::
2735 * Repeat syntax::               
2736 * Repeats and MIDI::            
2737 * Manual repeat commands::      
2738 * Tremolo repeats::             
2739 * Tremolo subdivisions::        
2740 * Measure repeats::             
2741 @end menu
2742
2743 @node Repeat types
2744 @subsection Repeat types
2745
2746 @cindex repeats
2747 @cindex @code{\repeat}
2748
2749 The following types of repetition are supported
2750
2751 @table @code
2752 @item unfold
2753 Repeated music is fully written (played) out.  This is useful when
2754 entering repetitious music.  This is the only kind of repeat that
2755 is included in MIDI output.
2756
2757 @item volta
2758 Repeats are not written out, but alternative endings (volte) are
2759 printed, left to right with brackets.  This is the standard notation
2760 for repeats with alternatives.  These are not played in MIDI output by default.
2761
2762 @ignore
2763 @item fold
2764 Alternative endings are written stacked.  This has limited use but may be
2765 used to typeset two lines of lyrics in songs with repeats, see
2766 @inputfileref{input,star-spangled-banner.ly}.
2767 @end ignore
2768
2769 @c tremolo, beamed
2770 @item tremolo
2771 Make tremolo beams.  These are not played in MIDI output by default.
2772
2773 @item percent
2774 Make beat or measure repeats.  These look like percent signs.  These are not played
2775 in MIDI output by default.
2776
2777 @end table  
2778
2779 @node Repeat syntax
2780 @subsection Repeat syntax
2781
2782
2783 LilyPond has one syntactic construct for specifying different types of
2784 repeats.  The syntax is
2785
2786 @example
2787   \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2788 @end example
2789
2790 If you have alternative endings, you may add
2791 @cindex @code{\alternative}
2792 @example
2793  \alternative @code{@{} @var{alternative1}
2794             @var{alternative2}
2795             @var{alternative3} @dots{} @code{@}}
2796 @end example
2797 where each @var{alternative} is a music expression.  If you do not
2798 give enough alternatives for all of the repeats, the first alternative
2799 is assumed to be played more than once.
2800
2801 Standard repeats are used like this
2802 @lilypond[quote,fragment,verbatim,relative=2]
2803 c1
2804 \repeat volta 2 { c4 d e f }
2805 \repeat volta 2 { f e d c }
2806 @end lilypond
2807
2808 With alternative endings
2809 @lilypond[quote,fragment,verbatim,relative=2]
2810 c1
2811 \repeat volta 2 {c4 d e f} 
2812 \alternative { {d2 d} {f f,} }
2813 @end lilypond
2814
2815
2816 @lilypond[quote,fragment,verbatim,relative=2]
2817 \context Staff {
2818   \partial 4
2819   \repeat volta 4 { e | c2 d2 | e2 f2 | }
2820   \alternative { { g4 g g } { a | a a a a | b2. } }
2821 }
2822 @end lilypond
2823
2824 It is possible to shorten volta brackets
2825 by setting @code{voltaSpannerDuration}.  In the next example, the
2826 bracket only lasts one measure, which is a duration of 3/4. 
2827
2828
2829
2830 @lilypond[verbatim,raggedright]
2831 \relative c''{
2832     \time 3/4
2833     c c c 
2834     \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2835     \repeat "volta" 5 { d d d  }
2836     \alternative { { e e e f f f }
2837     { g g g } }
2838 }
2839 @end lilypond
2840         
2841
2842 @seealso
2843
2844 Examples:
2845
2846 Brackets for the repeat are normally only printed over the topmost
2847 staff.  This can be adjusted by setting the @code{voltaOnThisStaff}
2848 property @inputfileref{input/regression,volta-multi-staff.ly},
2849 @inputfileref{input/regression,volta-chord-names.ly}
2850
2851
2852 @refbugs
2853
2854 A nested repeat like
2855
2856 @example 
2857 \repeat @dots{}
2858 \repeat @dots{}
2859 \alternative 
2860 @end example 
2861
2862 @noindent
2863 is ambiguous, since it is is not clear to which @code{\repeat} the
2864 @code{\alternative} belongs.  This ambiguity is resolved by always
2865 having the @code{\alternative} belong to the inner @code{\repeat}.
2866 For clarity, it is advisable to use braces in such situations.
2867 @cindex ambiguity
2868
2869
2870
2871 Timing information is not remembered at the start of an alternative,
2872 so after a repeat timing information must be reset by hand, for
2873 example by setting @code{Score.measurePosition} or entering
2874 @code{\partial}.  Similarly, slurs or ties are also not repeated.
2875
2876
2877
2878
2879 @node Repeats and MIDI
2880 @subsection Repeats and MIDI
2881
2882 @cindex expanding repeats
2883
2884 With a little bit of tweaking, all types of repeats can be present
2885 in the MIDI output.  This is achieved by applying the
2886 @code{\unfoldrepeats} music function.  This functions changes all
2887 repeats to unfold repeats.
2888
2889 @lilypond[verbatim,raggedright,fragment]
2890 \unfoldrepeats {
2891   \repeat tremolo 8 {c'32 e' }
2892   \repeat percent 2 { c''8 d'' }
2893   \repeat volta 2 {c'4 d' e' f'} 
2894   \alternative {
2895     { g' a' a' g' }
2896     {f' e' d' c' }
2897   }
2898 }
2899 \bar "|."
2900 @end lilypond
2901
2902 When creating a score file using @code{\unfoldrepeats} for midi, then
2903 it is necessary to make two @code{\score} blocks.  One for MIDI (with
2904 unfolded repeats) and one for notation (with volta, tremolo, and
2905 percent repeats).  For example,
2906
2907 @example
2908   \score @{
2909       @var{..music..}
2910       \paper @{ .. @}
2911   @} 
2912   \score @{
2913       \unfoldrepeats @var{..music..}
2914       \midi @{ .. @}
2915   @} 
2916 @end example
2917
2918 @node Manual repeat commands
2919 @subsection Manual repeat commands
2920
2921 @cindex @code{repeatCommands}
2922
2923 The property @code{repeatCommands} can be used to control the layout of
2924 repeats.  Its value is a Scheme list of repeat commands, where each repeat
2925 command can be
2926
2927 @table @asis
2928 @item @code{start-repeat},
2929   which prints a @code{|:} bar line;
2930 @item @code{end-repeat},
2931   which prints a @code{:|} bar line;
2932 @item @code{(volta @var{text})},
2933   which prints a volta bracket saying @var{text}: The text can be specified as
2934 a text string or as a markup text, see @ref{Text markup}.  Do not
2935 forget to change the font, as the default number font does not contain
2936 alphabetic characters;
2937 @item @code{(volta #f)}, which 
2938   stops a running volta bracket.
2939 @end table
2940
2941 @lilypond[quote,verbatim,fragment,relative=2]
2942 c4
2943   \set Score.repeatCommands = #'((volta "93") end-repeat)
2944 c4 c4
2945   \set Score.repeatCommands = #'((volta #f))
2946 c4 c4
2947 @end lilypond
2948
2949
2950
2951 @seealso
2952
2953 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
2954 @internalsref{VoltaRepeatedMusic},
2955 @internalsref{UnfoldedRepeatedMusic}, and
2956 @internalsref{FoldedRepeatedMusic}.
2957
2958 @node Tremolo repeats
2959 @subsection Tremolo repeats
2960 @cindex tremolo beams
2961
2962 To place tremolo marks between notes, use @code{\repeat} with tremolo
2963 style
2964 @lilypond[quote,verbatim,raggedright]
2965 \new Voice \relative c' {
2966   \repeat "tremolo" 8 { c16 d16 }
2967   \repeat "tremolo" 4 { c16 d16 }    
2968   \repeat "tremolo" 2 { c16 d16 }
2969 }
2970 @end lilypond
2971
2972 Tremolo marks can also be put on a single note.  In this case, the
2973 note should not be surrounded by braces.
2974 @lilypond[quote,verbatim,raggedright]
2975   \repeat "tremolo" 4 c'16
2976 @end lilypond
2977
2978 Similar output is obtained using the tremolo subdivision, described in
2979 @ref{Tremolo subdivisions}.
2980
2981 @seealso
2982
2983 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
2984
2985 Program reference: tremolo beams are @internalsref{Beam} objects.  Single stem
2986 tremolos are @internalsref{StemTremolo} objects.  The music expression is
2987 @internalsref{TremoloEvent}.
2988
2989 Example files: @inputfileref{input/regression,chord-tremolo.ly},
2990 @inputfileref{input/regression,stem-tremolo.ly}.
2991
2992 @node Tremolo subdivisions
2993 @subsection Tremolo subdivisions
2994 @cindex tremolo marks
2995 @cindex @code{tremoloFlags}
2996
2997 Tremolo marks can be printed on a single note by adding
2998 `@code{:}[@var{number}]' after the note.  The number indicates the
2999 duration of the subdivision, and it must be at least 8.  A
3000 @var{length} value of 8 gives one line across the note stem.  If the
3001 length is omitted, the last value (stored in @code{tremoloFlags}) is
3002 used
3003
3004 @lilypond[quote,verbatim,fragment]
3005   c'2:8 c':32 | c': c': |
3006 @end lilypond
3007
3008 @c [TODO : stok is te kort bij 32en]
3009 @c   somebody want to translate that into English?  :)
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 \relative c' {
3034   \repeat "percent" 4  { c4 }
3035   \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
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{\arpeggioNeutral}
3571 @code{\arpeggioNeutral},
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 section
3952 @ref{Small ensembles}.
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: @ref{Small ensembles},
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 be 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 StaffGroup
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{\keepWithTag} command, tagged expressions
5380 can be filtered.  For example,
5381 @example
5382 <<
5383   @var{the music}
5384   \keepWithTag #'score @var{the music}
5385   \keepWithTag #'part @var{the music}
5386 >>
5387 @end example
5388 would yield
5389
5390 @lilypondfile[quote]{tag-filter.ly}
5391
5392
5393 The argument of the @code{\tag} command should be a symbol, or a list
5394 of symbols, for example,
5395 @example
5396   \tag #'(original-part transposed-part) @dots{}
5397 @end example
5398
5399 @seealso
5400
5401 Examples: @inputfileref{input/regression,tag-filter.ly}.
5402
5403
5404 @node Quoting other voices
5405 @subsection Quoting other voices
5406
5407 With quotations, fragments of other parts can be inserted into a part
5408 directly.  Before a part can be quoted, it must be marked especially as
5409 quotable.  This is done with code @code{\addquote} command.
5410
5411 @example
5412 \addquote @var{name} @var{music}
5413 @end example
5414
5415
5416 @noindent
5417 Here, @var{name} is an identifying string.  The @var{music} is any kind
5418 of music.  This is an example of @code{\addquote}
5419
5420 @verbatim
5421 \addquote clarinet \relative c' {
5422   f4 fis g gis
5423 }
5424 @end verbatim
5425
5426 This command must be entered at toplevel, i.e.  outside any music
5427 blocks.
5428
5429 After calling @code{\addquote}, the quotation may then be done with
5430 @code{\quote},
5431
5432 @example
5433 \quote @var{name} @var{duration}  
5434 @end example
5435
5436 During a part, a piece of music can be quoted with the @code{\quote}
5437 command. 
5438   
5439 @example
5440 \quote clarinet 2.
5441 @end example
5442
5443 This would cite three quarter notes (@code{2.} is a dotted half note)
5444 of the previously added @code{clarinet} voice.
5445
5446 More precisely, it takes the current time-step of the part being
5447 printed, and extracts the notes at the corresponding point of the
5448 @code{\addquote}d voice.  Therefore, the argument to @code{\addquote}
5449 should be the entire part of the voice to be quoted, including any
5450 rests at the beginning. 
5451
5452 Quotations take into account the transposition of both source and target
5453 instruments, if they are specified using the @code{\transposition} command.
5454
5455 @lilypond[quote,raggedright,verbatim]
5456 \addquote clarinet \relative c' {
5457   \transposition bes
5458   f4 fis g gis
5459 }
5460
5461 {
5462   e'8 f'8 \quote clarinet 2
5463 }
5464 @end lilypond
5465
5466 The type of events that are present in cue notes can be trimmed with
5467 the @code{quotedEventTypes} property. The default value is
5468 @code{(note-event rest-event)}, which means that only notes of and
5469 rests of the cued voice end up in the @code{\quote}.
5470 Setting
5471
5472 @example
5473   \set Staff.quotedEventTypes = #'(note-event articulation-event dynamic-event)  
5474 @end example
5475
5476 @noindent
5477 will quote notes (but no rests), together with scripts and dynamics.
5478  
5479 @refbugs
5480
5481 Only the contents of the first @internalsref{Voice} occurring in an
5482 @code{\addquote} command will be considered for quotation, so
5483 @var{music} can not contain @code{\new} and @code{\context Voice}
5484 statements that would switch to a different Voice.
5485
5486
5487 @seealso
5488
5489 In this manual: @ref{Instrument transpositions}.
5490
5491 Examples: @inputfileref{input/regression,quote.ly}
5492 @inputfileref{input/regression,quote-transposition.ly}
5493
5494 Program reference: @internalsref{QuoteMusic}.
5495
5496 @node Formatting cue notes
5497 @section Formatting cue notes
5498
5499
5500 The previous section deals with inserting notes from another
5501 voice.  When making a part, these notes need to be specially formatted.
5502 Here is an example of formatted cue notes
5503
5504 @lilypond[verbatim]
5505 smaller = {
5506     \set fontSize = #-1
5507     \override Stem  #'length = #5.5
5508     \override Beam  #'thickness = #0.384
5509     \override Beam  #'space-function =
5510     #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
5511 }
5512
5513 {
5514     \set Staff.instrument = #"Horn in F"
5515     \set Score.skipBars = ##t
5516     R1*21
5517     << {
5518             \once \override Staff.MultiMeasureRest  #'staff-position = #-6
5519             R1
5520         }
5521         \new Voice {
5522             s2
5523             \clef tenor
5524             \smaller
5525             r8^"Bsn." c'8  f'8[ f'8]
5526             \clef treble
5527         }
5528     >>
5529     c'8^"Horn" cis'
5530     eis'4 fis'4
5531 }
5532 @end lilypond
5533
5534
5535 There are a couple of points to take care of:
5536
5537 @itemize @bullet
5538 @item
5539 The multi rest of the original part should be moved up or down during
5540 the cue.
5541 @item
5542 Cue notes have smaller font sizes.
5543 @item
5544 When cued notes have a clef change relative to the original part, the
5545 clef should be restored after the cue section.  This minimizes
5546 confusion for the reader,
5547 @item
5548 When the original part starts, this should be marked with the name of
5549 the instrument, in this case ``Horn.''   Of course, the cue part is
5550 marked with the instrument playing the cue.
5551 @end itemize
5552  
5553
5554
5555 @node Ancient notation
5556 @section Ancient notation
5557
5558 @cindex Vaticana, Editio
5559 @cindex Medicaea, Editio
5560 @cindex hufnagel
5561 @cindex Petrucci
5562 @cindex mensural
5563
5564 Support for ancient notation includes features for mensural notation
5565 and Gregorian Chant notation.  There is also limited support for
5566 figured bass notation.
5567
5568 Many graphical objects provide a @code{style} property, see
5569 @itemize @bullet
5570 @item
5571 @ref{Ancient note heads},
5572 @item
5573 @ref{Ancient accidentals},
5574 @item
5575 @ref{Ancient 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 In addition to the standard articulation signs described in section
5590 @ref{Articulations}, specific articulation signs for ancient notation
5591 are provided.
5592
5593 @itemize @bullet
5594 @item
5595 @ref{Ancient articulations}
5596 @end itemize
5597
5598 Other aspects of ancient notation can not that easily be expressed as
5599 in terms of just changing a style property of a graphical object or
5600 adding articulation signs.  Some notational concepts are introduced
5601 specifically for ancient notation,
5602
5603 @itemize @bullet
5604 @item
5605 @ref{Custodes},
5606 @item
5607 @ref{Divisiones},
5608 @item
5609 @ref{Ligatures}.
5610 @end itemize
5611
5612 If this all is too much of documentation for you, and you just want to
5613 dive into typesetting without worrying too much about the details on
5614 how to customize a context, you may have a look at the predefined
5615 contexts.  Use them to set up predefined style-specific voice and
5616 staff contexts, and directly go ahead with the note entry,
5617
5618 @itemize @bullet
5619 @item
5620 @ref{Gregorian Chant contexts},
5621 @item
5622 @ref{Mensural contexts}.
5623 @end itemize
5624
5625 There is limited support for figured bass notation which came
5626 up during the baroque period.
5627
5628 @itemize @bullet
5629 @item
5630 @ref{Figured bass}
5631 @end itemize
5632
5633 Here are all suptopics at a glance:
5634
5635 @menu
5636 * Ancient note heads::          
5637 * Ancient accidentals::         
5638 * Ancient rests::               
5639 * Ancient clefs::               
5640 * Ancient flags::               
5641 * Ancient time signatures::     
5642 * Ancient articulations::       
5643 * Custodes::                    
5644 * Divisiones::                  
5645 * Ligatures::                   
5646 * Gregorian Chant contexts::    
5647 * Mensural contexts::           
5648 * Figured bass::                
5649 @end menu
5650
5651
5652 @node Ancient note heads
5653 @subsection Ancient note heads
5654
5655 @cindex note heads
5656
5657
5658 For ancient notation, a note head style other than the @code{default}
5659 style may be chosen.  This is accomplished by setting the @code{style}
5660 property of the NoteHead object to @code{baroque}, @code{neomensural}
5661 or @code{mensural}.  The @code{baroque} style differs from the
5662 @code{default} style only in using a square shape for @code{\breve}
5663 note heads.  The @code{neomensural} style differs from the
5664 @code{baroque} style in that it uses rhomboidal heads for whole notes
5665 and all smaller durations.  Stems are centered on the note heads.
5666 This style is in particular useful when transcribing mensural music,
5667 e.g. for the incipit.  The @code{mensural} style finally produces note
5668 heads that mimic the look of note heads in historic printings of the
5669 16th century.
5670
5671 The following example demonstrates the @code{neomensural} style
5672
5673 @lilypond[quote,fragment,raggedright]
5674 \set Score.skipBars = ##T 
5675 \override NoteHead #'style = #'neomensural
5676 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
5677 @end lilypond
5678
5679 When typesetting a piece in Gregorian Chant notation, the
5680 @internalsref{Gregorian_ligature_engraver} will automatically select
5681 the proper note heads, such there is no need to explicitly set the
5682 note head style.  Still, the note head style can be set e.g.@: to
5683 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
5684 @internalsref{Mensural_ligature_engraver} is used to automatically
5685 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
5686 engravers work.
5687
5688 @seealso
5689
5690 Examples: @inputfileref{input/regression,note-head-style.ly} gives an
5691 overview over all available note head styles.
5692
5693
5694 @node Ancient accidentals
5695 @subsection Ancient accidentals
5696
5697 @cindex accidentals
5698
5699
5700 Use the @code{style} property of grob @internalsref{Accidental} to
5701 select ancient accidentals.   Supported styles are
5702 @code{mensural}, @code{vaticana}, @code{hufnagel} and @code{medicaea}.
5703
5704 @lilypond[quote,raggedright,staffsize=26]
5705 \score {
5706     {
5707         \fatText
5708         s
5709         ^\markup {
5710             \column <
5711                 "vaticana" 
5712                 { " " \musicglyph #"accidentals-vaticana-1"
5713                   " " \musicglyph #"accidentals-vaticana0" }
5714             >
5715             \column <
5716                 "medicaea"
5717                 { " " \musicglyph #"accidentals-medicaea-1" }
5718             >
5719             \column <
5720                 "hufnagel"
5721                 { " " \musicglyph #"accidentals-hufnagel-1" }
5722             >
5723             \column <
5724                 "mensural"
5725                 { " " \musicglyph #"accidentals-mensural-1"
5726                   " " \musicglyph #"accidentals-mensural1" }
5727             >
5728         }
5729     }
5730     \paper {
5731         raggedright = ##t 
5732         interscoreline = 1
5733         \context {
5734             \Score
5735             \remove "Bar_number_engraver"
5736         }
5737         \context{
5738             \Staff
5739             \remove "Clef_engraver"
5740             \remove "Key_engraver"
5741             \remove "Time_signature_engraver"
5742             \remove "Staff_symbol_engraver"
5743             minimumVerticalExtent = ##f
5744         }
5745     }
5746 }
5747 @end lilypond
5748
5749 As shown, not all accidentals are supported by each style.  When
5750 trying to access an unsupported accidental, LilyPond will switch to a
5751 different style, as demonstrated in
5752 @inputfileref{input/test,ancient-accidentals.ly}.
5753
5754 Similarly to local accidentals, the style of the key signature can be
5755 controlled by the @code{style} property of the
5756 @internalsref{KeySignature} grob.
5757
5758 @seealso
5759
5760 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
5761 @ref{Accidentals} give a general introduction into the use of
5762 accidentals.  @ref{Key signature} gives a general introduction into
5763 the use of key signatures.
5764
5765 Program reference: @internalsref{KeySignature}.
5766
5767 Examples: @inputfileref{input/test,ancient-accidentals.ly}.
5768
5769 @node Ancient rests
5770 @subsection Ancient rests
5771
5772 @cindex rests
5773
5774
5775 Use the @code{style} property of grob @internalsref{Rest} to select
5776 ancient accidentals.   Supported styles are @code{classical},
5777 @code{neomensural} and @code{mensural}.  @code{classical} differs
5778 from the @code{default} style only in that the quarter rest looks like
5779 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
5780 well for e.g. the incipit of a transcribed mensural piece of music.
5781 The @code{mensural} style finally mimics the appearance of rests as
5782 in historic prints of the 16th century.
5783
5784 The following example demonstrates the @code{neomensural} style
5785
5786 @lilypond[quote,fragment,raggedright]
5787 \override Rest #'style = #'neomensural
5788 \set Score.skipBars = ##t 
5789 r\longa r\breve r1 r2 r4 r8 r16
5790 @end lilypond
5791
5792 There are no 32th and 64th rests specifically for the mensural or
5793 neo-mensural style.  Instead, the rests from the default style will be
5794 taken.  See @inputfileref{input/test,rests.ly} for a chart of all
5795 rests.
5796
5797 There are no rests in Gregorian Chant notation; instead, it uses
5798 @ref{Divisiones}.
5799
5800 @seealso
5801
5802 In this manual: @ref{Rests} gives a general introduction into the use of rests.
5803
5804
5805 @node Ancient clefs
5806 @subsection Ancient clefs
5807
5808 @cindex clefs
5809
5810
5811 LilyPond supports a variety of clefs, many of them ancient.
5812
5813 The following table shows all ancient clefs that are supported via the
5814 @code{\clef} command.  Some of the clefs use the same glyph, but
5815 differ only with respect to the line they are printed on.  In such
5816 cases, a trailing number in the name is used to enumerate these clefs.
5817 Still, you can manually force a clef glyph to be typeset on an
5818 arbitrary line, as described in @ref{Clef}.  The note printed to the
5819 right side of each clef in the example column denotes the @code{c'}
5820 with respect to that clef.
5821
5822 @multitable @columnfractions   .4 .4 .2
5823
5824 @item
5825 @b{Description} @tab
5826 @b{Supported Clefs} @tab
5827 @b{Example}
5828
5829 @item
5830 modern style mensural C clef @tab
5831 @code{neomensural-c1}, @code{neomensural-c2},
5832 @code{neomensural-c3}, @code{neomensural-c4} @tab
5833 @lilypond[fragment,quote,relative=1,notime]
5834
5835 \clef "neomensural-c2" c
5836 @end lilypond
5837
5838 @item
5839 petrucci style mensural C clefs, for use on different staff lines
5840 (the examples shows the 2nd staff line C clef).
5841
5842 @tab
5843 @code{petrucci-c1}
5844 @code{petrucci-c2}
5845 @code{petrucci-c3}
5846 @code{petrucci-c4}
5847 @code{petrucci-c5}
5848
5849 @tab
5850 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5851
5852 \clef "petrucci-c2" c
5853 @end lilypond
5854
5855 @item
5856 petrucci style mensural F clef @tab
5857 @code{petrucci-f} @tab
5858 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5859
5860 \clef "petrucci-f" c
5861 @end lilypond
5862
5863 @item
5864 petrucci style mensural G clef @tab
5865 @code{petrucci-g} @tab
5866 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5867
5868 \clef "petrucci-g" c
5869 @end lilypond
5870
5871 @item
5872 historic style mensural C clef @tab
5873 @code{mensural-c1}, @code{mensural-c2}, @code{mensural-c3},
5874 @code{mensural-c4} @tab
5875 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5876
5877 \clef "mensural-c2" c
5878 @end lilypond
5879
5880 @item
5881 historic style mensural F clef @tab
5882 @code{mensural-f} @tab
5883 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5884
5885 \clef "mensural-f" c
5886 @end lilypond
5887
5888 @item
5889 historic style mensural G clef @tab
5890 @code{mensural-g} @tab
5891 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5892
5893 \clef "mensural-g" c
5894 @end lilypond
5895
5896 @item
5897 Editio Vaticana style do clef @tab
5898 @code{vaticana-do1}, @code{vaticana-do2}, @code{vaticana-do3} @tab
5899 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5900     \override Staff.StaffSymbol   #'line-count = #4
5901
5902 \clef "vaticana-do2" c
5903 @end lilypond
5904
5905 @item
5906 Editio Vaticana style fa clef @tab
5907 @code{vaticana-fa1}, @code{vaticana-fa2} @tab
5908 @lilypond[quote,relative=1,notime,indent=0.0\mm,fragment]
5909     \override Staff.StaffSymbol   #'line-count = #4
5910
5911 \clef "vaticana-fa2" c
5912 @end lilypond
5913
5914 @item
5915 Editio Medicaea style do clef @tab
5916 @code{medicaea-do1}, @code{medicaea-do2}, @code{medicaea-do3} @tab
5917 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5918     \override Staff.StaffSymbol   #'line-count = #4
5919
5920 \clef "medicaea-do2" c
5921 @end lilypond
5922
5923 @item
5924 Editio Medicaea style fa clef @tab
5925 @code{medicaea-fa1}, @code{medicaea-fa2} @tab
5926 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5927     \override Staff.StaffSymbol   #'line-count = #4
5928
5929 \clef "medicaea-fa2" c
5930 @end lilypond
5931
5932 @item
5933 historic style hufnagel do clef @tab
5934 @code{hufnagel-do1}, @code{hufnagel-do2}, @code{hufnagel-do3} @tab
5935 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5936     \override Staff.StaffSymbol   #'line-count = #4
5937
5938 \clef "hufnagel-do2" c
5939 @end lilypond
5940
5941 @item
5942 historic style hufnagel fa clef @tab
5943 @code{hufnagel-fa1}, @code{hufnagel-fa2} @tab
5944 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5945     \override Staff.StaffSymbol   #'line-count = #4
5946
5947 \clef "hufnagel-fa2" c
5948 @end lilypond
5949
5950 @item
5951 historic style hufnagel combined do/fa clef @tab
5952 @code{hufnagel-do-fa} @tab
5953 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5954 \clef "hufnagel-do-fa" c
5955 @end lilypond
5956
5957 @end multitable
5958
5959
5960
5961 @emph{Modern style} means ``as is typeset in contemporary editions of
5962 transcribed mensural music''.
5963
5964 @emph{Petrucci style} means ``inspired by printings published by the
5965 famous engraver Petrucci (1466-1539)''.
5966
5967 @emph{Historic style} means ``as was typeset or written in historic
5968 editions (other than those of Petrucci)''.
5969
5970 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
5971
5972 Petrucci used C clefs with differently balanced left-side vertical
5973 beams, depending on which staff line it is printed.
5974
5975 @seealso
5976
5977 In this manual: see @ref{Clef}.
5978
5979 @refbugs
5980
5981 The mensural g clef is mapped to the Petrucci g clef.
5982
5983
5984
5985 @node Ancient flags
5986 @subsection Ancient flags
5987
5988 @cindex flags
5989
5990
5991 Use the @code{flag-style} property of grob @internalsref{Stem} to
5992 select ancient flags.  Besides the @code{default} flag style,
5993  only @code{mensural} style is supported
5994
5995 @lilypond[quote,fragment,raggedright,verbatim]
5996 \override Stem #'flag-style = #'mensural
5997 \override Stem #'thickness = #1.0
5998 \override NoteHead #'style = #'mensural
5999 \autoBeamOff
6000 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
6001 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
6002 @end lilypond
6003
6004 Note that the innermost flare of each mensural flag always is
6005 vertically aligned with a staff line.
6006
6007 There is no particular flag style for neo-mensural notation.  Hence,
6008 when typesetting the incipit of a transcribed piece of mensural
6009 music, the default flag style should be used.  There are no flags in
6010 Gregorian Chant notation.
6011
6012 @refbugs
6013
6014 The attachment of ancient flags to stems is slightly off due to a
6015 change in early 2.3.x.
6016
6017 Vertically aligning each flag with a staff line assumes that stems
6018 always end either exactly on or exactly in the middle between two
6019 staff lines.  This may not always be true when using advanced layout
6020 features of classical notation (which however are typically out of
6021 scope for mensural notation).
6022
6023 @node Ancient time signatures
6024 @subsection Ancient time signatures
6025
6026 @cindex time signatures
6027
6028
6029 There is limited support for mensural time signatures.   The
6030 glyphs are hard-wired to particular time fractions.  In other words,
6031 to get a particular mensural signature glyph with the @code{\time n/m}
6032 command, @code{n} and @code{m} have to be chosen according to the
6033 following table
6034
6035 @lilypond[quote]
6036 \paper {
6037     indent = 0.0
6038     raggedright = ##t
6039     \context {
6040         \Staff
6041         \remove Staff_symbol_engraver
6042         \remove Clef_engraver
6043         \remove Time_signature_engraver
6044     }
6045 } {
6046     \set Score.timing = ##f
6047     \set Score.barAlways = ##t
6048     s_\markup { "$\\backslash$time 4/4" }
6049      ^\markup { "       " \musicglyph #"timesig-neomensural4/4" }
6050     s
6051     s_\markup { "$\\backslash$time 2/2" }
6052      ^\markup { "       " \musicglyph #"timesig-neomensural2/2" }
6053     s
6054     s_\markup { "$\\backslash$time 6/4" }
6055      ^\markup { "       " \musicglyph #"timesig-neomensural6/4" }
6056     s
6057     s_\markup { "$\\backslash$time 6/8" }
6058      ^\markup { "       " \musicglyph #"timesig-neomensural6/8" }
6059     \break
6060     s_\markup { "$\\backslash$time 3/2" }
6061      ^\markup { "       " \musicglyph #"timesig-neomensural3/2" }
6062     s
6063     s_\markup { "$\\backslash$time 3/4" }
6064      ^\markup { "       " \musicglyph #"timesig-neomensural3/4" }
6065     s
6066     s_\markup { "$\\backslash$time 9/4" }
6067      ^\markup { "       " \musicglyph #"timesig-neomensural9/4" }
6068     s
6069     s_\markup { "$\\backslash$time 9/8" }
6070      ^\markup { "       " \musicglyph #"timesig-neomensural9/8" }
6071     \break
6072     s_\markup { "$\\backslash$time 4/8" }
6073      ^\markup { "       " \musicglyph #"timesig-neomensural4/8" }
6074     s
6075     s_\markup { "$\\backslash$time 2/4" }
6076      ^\markup { "       " \musicglyph #"timesig-neomensural2/4" }
6077     \break
6078 }
6079 @end lilypond
6080
6081 Use the @code{style} property of grob @internalsref{TimeSignature} to
6082 select ancient time signatures.  Supported styles are
6083 @code{neomensural} and @code{mensural}.  The above table uses the
6084 @code{neomensural} style.  This style is appropriate for the
6085 incipit of transcriptions of mensural pieces.  The @code{mensural}
6086 style mimics the look of historical printings of the 16th century.
6087
6088 The following examples shows the differences in style,
6089
6090 @lilypond[raggedright]
6091 \relative c' {
6092   \time 2/2
6093   c1^\markup { \hspace #-2.0 \typewriter default }
6094
6095   \override Staff.TimeSignature #'style = #'numbered  
6096   \time 2/2
6097   c1^\markup { \hspace #-2.0 \typewriter numbered }
6098
6099   \override Staff.TimeSignature #'style = #'mensural
6100   \time 2/2
6101   c1^\markup { \hspace #-2.0 \typewriter mensural }
6102   
6103   \override Staff.TimeSignature #'style = #'neomensural
6104   \time 2/2
6105   c1^\markup { \hspace #-2.0 \typewriter neomensural }
6106   \override Staff.TimeSignature #'style = #'single-digit
6107   \time 2/2
6108   c1^\markup { \hspace #-2.0 \typewriter single-digit }
6109 }
6110 @end lilypond
6111
6112 @seealso
6113
6114 This manual: @ref{Time signature} gives a general introduction into
6115 the use of time signatures.
6116
6117 @refbugs
6118
6119 Ratios of note durations do not change with the time signature.  For
6120 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
6121 be made by hand, by setting
6122
6123 @example
6124   breveTP = #(ly:make-duration -1 0 3 2)
6125   @dots{}
6126   @{ c\breveTP f1 @}
6127 @end example
6128
6129 @noindent
6130 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note. 
6131
6132 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
6133 addressable with @code{\time}.  Use a @code{\markup} instead
6134
6135 @node Ancient articulations
6136 @subsection Ancient articulations
6137
6138 @cindex articulations
6139
6140 In addition to the standard articulation signs described in section
6141 @ref{Articulations}, articulation signs for ancient notation are
6142 provided.  These are specifically designed for use with notation in
6143 Editio Vaticana style.
6144
6145 @lilypond[quote,raggedright,verbatim,noindent]
6146 \include "gregorian-init.ly"
6147 \score {
6148   \context VaticanaVoice {
6149     \override TextScript #'font-family = #'typewriter
6150     \override TextScript #'font-shape = #'upright
6151     \override Script #'padding = #-0.1
6152     a4\ictus_"ictus" s1
6153     a4\circulus_"circulus" s1
6154     a4\semicirculus_"semicirculus" s1 s
6155     a4\accentus_"accentus" s1
6156     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
6157   }
6158   \paper {
6159     \context {
6160         \VaticanaVoice
6161         % Prepare TextSpanner for \episem{Initium|Finis} use.
6162         \override TextSpanner #'style = #'line
6163         \override TextSpanner #'edge-height = #'(0 . 0)
6164         \override TextSpanner #'padding = #0.5
6165         \override TextSpanner #'enclose-bounds = #1
6166         \override TextSpanner #'edge-text = #'("" . "")
6167     }
6168   }
6169 }
6170 @end lilypond
6171
6172 @refbugs
6173
6174 The line @code{\override Script #'padding = #-0.1} is required to
6175 force the articulation signs being placed vertically tightly to the
6176 correpsonding note heads.
6177
6178
6179 @node Custodes
6180 @subsection Custodes
6181
6182 @cindex custos
6183 @cindex custodes
6184
6185 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
6186 symbol that appears at the end of a staff.  It anticipates the pitch
6187 of the first note(s) of the following line thus helping the performer
6188 to manage line breaks during performance.
6189
6190 Custodes were frequently used in music notation until the 17th
6191 century.  Nowadays, they have survived only in a few particular forms
6192 of musical notation such as contemporary editions of Gregorian chant
6193 like the @emph{editio vaticana}.  There are different custos glyphs
6194 used in different flavors of notational style.
6195
6196 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
6197 @internalsref{Staff} context when declaring the @code{\paper} block,
6198 as shown in the following example
6199
6200 @example
6201 \paper @{
6202   \context @{
6203      \Staff
6204      \consists Custos_engraver
6205      Custos \override #'style = #'mensural
6206   @}
6207 @}
6208 @end example
6209
6210 The result looks like this
6211
6212 @lilypond[quote,raggedright]
6213 \score {
6214      {
6215         a'1
6216         \override Staff.Custos #'style = #'mensural
6217         \break
6218         g'
6219     }
6220     \paper {
6221         \context {
6222             \Staff
6223             \consists Custos_engraver
6224         }
6225     }
6226 }
6227 @end lilypond
6228
6229 The custos glyph is selected by the @code{style} property.  The styles
6230 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
6231 @code{mensural}.  They are demonstrated in the following fragment
6232
6233 @lilypond[quote]
6234 \score {
6235        \new Lyrics    \lyricmode {
6236         \markup {
6237             \column <
6238                 \typewriter                "vaticana" 
6239                 { " " \musicglyph #"custodes-vaticana-u0" }
6240             > }
6241         \markup {    \column <
6242                 \typewriter                "medicaea"
6243                 { " " \musicglyph #"custodes-medicaea-u0" }
6244             >}
6245             \markup {
6246             \column <
6247                 \typewriter                "hufnagel"
6248                 { " " \musicglyph #"custodes-hufnagel-u0" }
6249             >}
6250             \markup {
6251             \column <
6252                 \typewriter                "mensural"
6253                 { " " \musicglyph #"custodes-mensural-u0" }
6254             >}
6255         }
6256     
6257     \paper {
6258         raggedright = ##t 
6259         }      
6260 }
6261 @end lilypond
6262
6263 @seealso
6264
6265 Program reference: @internalsref{Custos}.
6266
6267 Examples: @inputfileref{input/regression,custos.ly}.
6268
6269
6270 @node Divisiones
6271 @subsection Divisiones
6272
6273 @cindex divisio
6274 @cindex divisiones
6275 @cindex finalis
6276
6277 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
6278 `division') is a staff context symbol that is used to structure
6279 Gregorian music into phrases and sections.  The musical meaning of
6280 @emph{divisio minima}, @emph{divisio maior} and @emph{divisio maxima}
6281 can be characterized as short, medium and long pause, somewhat like
6282 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
6283 only marks the end of a chant, but is also frequently used within a
6284 single antiphonal/responsorial chant to mark the end of each section.
6285
6286
6287 To use divisiones, include the file @code{gregorian-init.ly}.  It
6288 contains definitions that you can apply by just inserting
6289 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
6290 and @code{\finalis} at proper places in the input.  Some editions use
6291 @emph{virgula} or @emph{caesura} instead of divisio minima.
6292 Therefore, @code{gregorian-init.ly} also defines @code{\virgula} and
6293 @code{\caesura}
6294
6295 @lilypondfile[quote,raggedright]{divisiones.ly}
6296
6297 @refcommands
6298
6299 @cindex @code{\virgula}
6300 @code{\virgula},
6301 @cindex @code{\caesura}
6302 @code{\caesura},
6303 @cindex @code{\divisioMinima}
6304 @code{\divisioMinima},
6305 @cindex @code{\divisioMaior}
6306 @code{\divisioMaior},
6307 @cindex @code{\divisioMaxima}
6308 @code{\divisioMaxima},
6309 @cindex @code{\finalis}
6310 @code{\finalis}.
6311
6312 @seealso
6313
6314 In this manual: @ref{Breath marks}.
6315
6316 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
6317
6318 Examples: @inputfileref{input/test,divisiones.ly}.
6319
6320 @node Ligatures
6321 @subsection Ligatures
6322
6323 @cindex Ligatures
6324
6325 @c TODO: Should double check if I recalled things correctly when I wrote
6326 @c down the following paragraph by heart.
6327
6328 A ligature is a graphical symbol that represents at least two distinct
6329 notes.  Ligatures originally appeared in the manuscripts of Gregorian
6330 chant notation to denote ascending or descending sequences of notes.
6331
6332 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
6333 Some ligature styles may need additional input syntax specific for
6334 this particular type of ligature.  By default, the
6335 @internalsref{LigatureBracket} engraver just puts a square bracket
6336 above the ligature
6337
6338 @lilypond[quote,raggedright,verbatim]
6339 \transpose c c' {
6340     \[ g c a f d' \]
6341     a g f
6342     \[ e f a g \]
6343 }
6344 @end lilypond
6345
6346 To select a specific style of ligatures, a proper ligature engraver
6347 has to be added to the @internalsref{Voice} context, as explained in
6348 the following subsections.   Only white mensural ligatures
6349 are supported with certain limitations.
6350
6351
6352
6353 @refbugs
6354
6355 Ligatures need special spacing that has not yet been implemented.  As
6356 a result, there is too much space between ligatures most of the time,
6357 and line breaking often is unsatisfactory.  Also, lyrics do not
6358 correctly align with ligatures.
6359
6360 Accidentals must not be printed within a ligature, but instead need to
6361 be collected and printed in front of it.
6362
6363 Augmentum dots within ligatures are not handled correctly.
6364
6365
6366 @menu
6367 * White mensural ligatures::    
6368 * Gregorian square neumes ligatures::  
6369 @end menu
6370
6371 @node White mensural ligatures
6372 @subsubsection White mensural ligatures
6373
6374 @cindex Mensural ligatures
6375 @cindex White mensural ligatures
6376
6377 There is limited support for white mensural ligatures.  
6378
6379 To engrave white mensural ligatures, in the paper block the
6380 @internalsref{Mensural_ligature_engraver} has to be put into the
6381 @internalsref{Voice} context, and remove the
6382 @internalsref{Ligature_bracket_engraver}
6383
6384 @example
6385     \paper @{
6386         \context @{
6387             \Voice
6388             \remove Ligature_bracket_engraver
6389             \consists Mensural_ligature_engraver
6390         @}
6391     @}
6392 @end example
6393
6394 There is no additional input language to describe the shape of a
6395 white mensural ligature.  The shape is rather determined solely from
6396 the pitch and duration of the enclosed notes.  While this approach may
6397 take a new user a while to get accustomed, it has the great advantage
6398 that the full musical information of the ligature is known internally.
6399 This is not only required for correct MIDI output, but also allows for
6400 automatic transcription of the ligatures.
6401
6402 For example,
6403
6404 @example
6405         \set Score.timing = ##f
6406         \set Score.defaultBarType = "empty"
6407         \override NoteHead #'style = #'neomensural
6408         \override Staff.TimeSignature   #'style = #'neomensural
6409         \clef "petrucci-g"
6410         \[ g\longa c\breve a\breve f\breve d'\longa \]
6411         s4
6412         \[ e1 f1 a\breve g\longa \]
6413 @end example
6414 @lilypond[quote,raggedright]
6415 \score {
6416     \transpose c c' {
6417         \set Score.timing = ##f
6418         \set Score.defaultBarType = "empty"
6419         \override NoteHead #'style = #'neomensural
6420         \override Staff.TimeSignature   #'style = #'neomensural
6421         \clef "petrucci-g"
6422         \[ g\longa c\breve a\breve f\breve d'\longa \]
6423         s4
6424         \[ e1 f1 a\breve g\longa \]
6425     }
6426     \paper {
6427         \context {
6428             \Voice
6429             \remove Ligature_bracket_engraver
6430             \consists Mensural_ligature_engraver
6431         }
6432     }
6433 }
6434 @end lilypond
6435
6436 Without replacing @internalsref{Ligature_bracket_engraver} with
6437 @internalsref{Mensural_ligature_engraver}, the same music transcribes
6438 to the following
6439
6440 @lilypond[quote,raggedright]
6441 \transpose c c' {
6442         \set Score.timing = ##f
6443         \set Score.defaultBarType = "empty"
6444         \override NoteHead #'style = #'neomensural
6445         \override Staff.TimeSignature   #'style = #'neomensural
6446         \clef "petrucci-g"
6447         \[ g\longa c\breve a\breve f\breve d'\longa \]
6448         s4
6449         \[ e1 f1 a\breve g\longa \]
6450 }
6451 @end lilypond
6452
6453 @refbugs
6454
6455 The implementation is experimental.  It may output strange warnings,
6456 incorrect results, and might even crash on more complex ligatures.
6457
6458 @node Gregorian square neumes ligatures
6459 @subsubsection Gregorian square neumes ligatures
6460
6461 @cindex Square neumes ligatures
6462 @cindex Gregorian square neumes ligatures
6463
6464 There is limited support for Gregorian square neumes notation
6465 (following the style of the Editio Vaticana).  Core ligatures can
6466 already be typeset, but essential issues for serious typesetting are
6467 still lacking, such as (among others) horizontal alignment of multiple
6468 ligatures, lyrics alignment and proper accidentals handling.
6469
6470
6471 The following table contains the extended neumes table of the 2nd
6472 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
6473 1983 by the monks of Solesmes.
6474
6475 @multitable @columnfractions .4 .2 .2 .2
6476
6477 @item
6478 @b{Neuma aut@*Neumarum Elementa} @tab
6479 @b{Figurae@*Rectae} @tab
6480 @b{Figurae@*Liquescentes Auctae} @tab
6481 @b{Figurae@*Liquescentes Deminutae}
6482
6483 @c TODO: \paper block is identical in all of the below examples.
6484 @c Therefore, it should somehow be included rather than duplicated all
6485 @c the time. --jr
6486
6487 @c why not make identifiers in ly/engraver-init.ly? --hwn
6488
6489 @c Because it's just used to typeset plain notes without
6490 @c a staff for demonstration purposes rather than something
6491 @c special of Gregorian chant notation. --jr
6492
6493 @item
6494 @code{1. Punctum}
6495 @tab
6496 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.5\cm]
6497 \include "gregorian-init.ly"
6498 \score {
6499     \transpose c c' {
6500         % Punctum
6501         \[ b \]
6502         \noBreak s^\markup {"a"} \noBreak
6503
6504         % Punctum Inclinatum
6505         \[ \inclinatum b \]
6506         \noBreak s^\markup {"b"}
6507     }
6508 \paper { \neumeDemoPaper }}
6509 @end lilypond
6510 @tab
6511 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.5\cm]
6512 \include "gregorian-init.ly"
6513 \score {
6514      \transpose c c' {
6515         % Punctum Auctum Ascendens
6516         \[ \auctum \ascendens b \]
6517         \noBreak s^\markup {"c"} \noBreak
6518
6519         % Punctum Auctum Descendens
6520         \[ \auctum \descendens b \]
6521         \noBreak s^\markup {"d"} \noBreak
6522
6523         % Punctum Inclinatum Auctum
6524         \[ \inclinatum \auctum b \]
6525         \noBreak s^\markup {"e"}
6526     }
6527 \paper { \neumeDemoPaper }}
6528 @end lilypond
6529 @tab
6530 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6531 \include "gregorian-init.ly"
6532 \score {
6533      \transpose c c' {
6534         % Punctum Inclinatum Parvum
6535         \[ \inclinatum \deminutum b \]
6536         \noBreak s^\markup {"f"}
6537     }
6538 \paper { \neumeDemoPaper }}
6539 @end lilypond
6540
6541 @item
6542 @code{2. Virga}
6543 @tab
6544 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6545 \include "gregorian-init.ly"
6546 \score {
6547      \transpose c c' {
6548         % Virga
6549         \[ \virga b \]
6550         \noBreak s^\markup {"g"}
6551     }
6552 \paper { \neumeDemoPaper }}
6553 @end lilypond
6554 @tab
6555 @tab
6556
6557 @item
6558 @code{3. Apostropha vel Stropha}
6559 @tab
6560 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6561 \include "gregorian-init.ly"
6562 \score {
6563      \transpose c c' {
6564         % Stropha
6565         \[ \stropha b \]
6566         \noBreak s^\markup {"h"}
6567     }
6568 \paper { \neumeDemoPaper }}
6569 @end lilypond
6570 @tab
6571 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6572 \include "gregorian-init.ly"
6573 \score {
6574      \transpose c c' {
6575         % Stropha Aucta
6576         \[ \stropha \auctum b \]
6577         \noBreak s^\markup {"i"}
6578     }
6579 \paper { \neumeDemoPaper }}
6580 @end lilypond
6581 @tab
6582
6583 @item
6584 @code{4. Oriscus}
6585 @tab
6586 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6587 \include "gregorian-init.ly"
6588 \score {
6589      \transpose c c' {
6590         % Oriscus
6591         \[ \oriscus b \]
6592         \noBreak s^\markup {"j"}
6593     }
6594 \paper { \neumeDemoPaper }}
6595 @end lilypond
6596 @tab
6597 @tab
6598
6599 @item
6600 @code{5. Clivis vel Flexa}
6601 @tab
6602 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6603 \include "gregorian-init.ly"
6604 \score {
6605      \transpose c c' {
6606         % Clivis vel Flexa
6607         \[ b \flexa g \]
6608         s^\markup {"k"}
6609     }
6610 \paper { \neumeDemoPaper }}
6611 @end lilypond
6612 @tab
6613 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.0\cm]
6614 \include "gregorian-init.ly"
6615 \score {
6616      \transpose c c' {
6617         % Clivis Aucta Descendens
6618         \[ b \flexa \auctum \descendens g \]
6619         \noBreak s^\markup {"l"} \noBreak
6620
6621         % Clivis Aucta Ascendens
6622         \[ b \flexa \auctum \ascendens g \]
6623         \noBreak s^\markup {"m"}
6624     }
6625 \paper { \neumeDemoPaper }}
6626 @end lilypond
6627 @tab
6628 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6629 \include "gregorian-init.ly"
6630 \score {
6631      \transpose c c' {
6632         % Cephalicus
6633         \[ b \flexa \deminutum g \]
6634         s^\markup {"n"}
6635     }
6636 \paper { \neumeDemoPaper }}
6637 @end lilypond
6638
6639 @item
6640 @code{6. Podatus vel Pes}
6641 @tab
6642 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6643 \include "gregorian-init.ly"
6644 \score {
6645      \transpose c c' {
6646         % Podatus vel Pes
6647         \[ g \pes b \]
6648         s^\markup {"o"}
6649     }
6650 \paper { \neumeDemoPaper }}
6651 @end lilypond
6652 @tab
6653 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.0\cm]
6654 \include "gregorian-init.ly"
6655 \score {
6656      \transpose c c' {
6657         % Pes Auctus Descendens
6658         \[ g \pes \auctum \descendens b \]
6659         \noBreak s^\markup {"p"} \noBreak
6660
6661         % Pes Auctus Ascendens
6662         \[ g \pes \auctum \ascendens b \]
6663         \noBreak s^\markup {"q"}
6664     }
6665 \paper { \neumeDemoPaper }}
6666 @end lilypond
6667 @tab
6668 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6669 \include "gregorian-init.ly"
6670 \score {
6671      \transpose c c' {
6672         % Epiphonus
6673         \[ g \pes \deminutum b \]
6674         s^\markup {"r"}
6675     }
6676 \paper { \neumeDemoPaper }}
6677 @end lilypond
6678
6679 @item
6680 @code{7. Pes Quassus}
6681 @tab
6682 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6683 \include "gregorian-init.ly"
6684 \score {
6685      \transpose c c' {
6686         % Pes Quassus
6687         \[ \oriscus g \pes \virga b \]
6688         s^\markup {"s"}
6689     }
6690 \paper { \neumeDemoPaper }}
6691 @end lilypond
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         % Pes Quassus Auctus Descendens
6698         \[ \oriscus g \pes \auctum \descendens b \]
6699         s^\markup {"t"}
6700     }
6701 \paper { \neumeDemoPaper }}
6702 @end lilypond
6703 @tab
6704
6705 @item
6706 @code{8. Quilisma Pes}
6707 @tab
6708 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6709 \include "gregorian-init.ly"
6710 \score {
6711      \transpose c c' {
6712         % Quilisma Pes
6713         \[ \quilisma g \pes b \]
6714         s^\markup {"u"}
6715     }
6716 \paper { \neumeDemoPaper }}
6717 @end lilypond
6718 @tab
6719 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6720 \include "gregorian-init.ly"
6721 \score {
6722      \transpose c c' {
6723         % Quilisma Pes Auctus Descendens
6724         \[ \quilisma g \pes \auctum \descendens b \]
6725         s^\markup {"v"}
6726     }
6727 \paper { \neumeDemoPaper }}
6728 @end lilypond
6729 @tab
6730
6731 @item
6732 @code{9. Podatus Initio Debilis}
6733 @tab
6734 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6735 \include "gregorian-init.ly"
6736 \score {
6737      \transpose c c' {
6738         % Pes Initio Debilis
6739         \[ \deminutum g \pes b \]
6740         s^\markup {"w"}
6741     }
6742 \paper { \neumeDemoPaper }}
6743 @end lilypond
6744 @tab
6745 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6746 \include "gregorian-init.ly"
6747 \score {
6748      \transpose c c' {
6749         % Pes Auctus Descendens Initio Debilis
6750         \[ \deminutum g \pes \auctum \descendens b \]
6751         s^\markup {"x"}
6752     }
6753 \paper { \neumeDemoPaper }}
6754 @end lilypond
6755 @tab
6756
6757 @item
6758 @code{10. Torculus}
6759 @tab
6760 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6761 \include "gregorian-init.ly"
6762 \score {
6763      \transpose c c' {
6764         % Torculus
6765         \[ a \pes b \flexa g \]
6766         s^\markup {"y"}
6767     }
6768 \paper { \neumeDemoPaper }}
6769 @end lilypond
6770 @tab
6771 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6772 \include "gregorian-init.ly"
6773 \score {
6774      \transpose c c' {
6775         % Torculus Auctus Descendens
6776         \[ a \pes b \flexa \auctum \descendens g \]
6777         s^\markup {"z"}
6778     }
6779 \paper { \neumeDemoPaper }}
6780 @end lilypond
6781 @tab
6782 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6783 \include "gregorian-init.ly"
6784 \score {
6785      \transpose c c' {
6786         % Torculus Deminutus
6787         \[ a \pes b \flexa \deminutum g \]
6788         s^\markup {"A"}
6789     }
6790 \paper { \neumeDemoPaper }}
6791 @end lilypond
6792
6793 @item
6794 @code{11. Torculus Initio Debilis}
6795 @tab
6796 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6797 \include "gregorian-init.ly"
6798 \score {
6799      \transpose c c' {
6800         % Torculus Initio Debilis
6801         \[ \deminutum a \pes b \flexa g \]
6802         s^\markup {"B"}
6803     }
6804 \paper { \neumeDemoPaper }}
6805 @end lilypond
6806 @tab
6807 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6808 \include "gregorian-init.ly"
6809 \score {
6810      \transpose c c' {
6811         % Torculus Auctus Descendens Initio Debilis
6812         \[ \deminutum a \pes b \flexa \auctum \descendens g \]
6813         s^\markup {"C"}
6814     }
6815 \paper { \neumeDemoPaper }}
6816 @end lilypond
6817 @tab
6818 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6819 \include "gregorian-init.ly"
6820 \score {
6821      \transpose c c' {
6822         % Torculus Deminutus Initio Debilis
6823         \[ \deminutum a \pes b \flexa \deminutum g \]
6824         s^\markup {"D"}
6825     }
6826 \paper { \neumeDemoPaper }}
6827 @end lilypond
6828
6829 @item
6830 @code{12. Porrectus}
6831 @tab
6832 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6833 \include "gregorian-init.ly"
6834 \score {
6835      \transpose c c' {
6836         % Porrectus
6837         \[ a \flexa g \pes b \]
6838         s^\markup {"E"}
6839     }
6840 \paper { \neumeDemoPaper }}
6841 @end lilypond
6842 @tab
6843 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6844 \include "gregorian-init.ly"
6845 \score {
6846      \transpose c c' {
6847         % Porrectus Auctus Descendens
6848         \[ a \flexa g \pes \auctum \descendens b \]
6849         s^\markup {"F"}
6850     }
6851 \paper { \neumeDemoPaper }}
6852 @end lilypond
6853 @tab
6854 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6855 \include "gregorian-init.ly"
6856 \score {
6857      \transpose c c' {
6858         % Porrectus Deminutus
6859         \[ a \flexa g \pes \deminutum b \]
6860         s^\markup {"G"}
6861     }
6862 \paper { \neumeDemoPaper }}
6863 @end lilypond
6864
6865 @item
6866 @code{13. Climacus}
6867 @tab
6868 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6869 \include "gregorian-init.ly"
6870 \score {
6871      \transpose c c' {
6872         % Climacus
6873         \[ \virga b \inclinatum a \inclinatum g \]
6874         s^\markup {"H"}
6875     }
6876     \paper { \neumeDemoPaper }
6877 }
6878 @end lilypond
6879 @tab
6880 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6881 \include "gregorian-init.ly"
6882 \score {
6883      \transpose c c' {
6884         % Climacus Auctus
6885         \[ \virga b \inclinatum a \inclinatum \auctum g \]
6886         s^\markup {"I"}
6887     }
6888 \paper { \neumeDemoPaper }}
6889 @end lilypond
6890 @tab
6891 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6892 \include "gregorian-init.ly"
6893 \score {
6894      \transpose c c' {
6895         % Climacus Deminutus
6896         \[ \virga b \inclinatum a \inclinatum \deminutum g \]
6897         s^\markup {"J"}
6898     }
6899 \paper { \neumeDemoPaper }}
6900 @end lilypond
6901
6902 @item
6903 @code{14. Scandicus}
6904 @tab
6905 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6906 \include "gregorian-init.ly"
6907 \score {
6908      \transpose c c' {
6909         % Scandicus
6910         \[ g \pes a \virga b \]
6911         s^\markup {"K"}
6912     }
6913 \paper { \neumeDemoPaper }}
6914 @end lilypond
6915 @tab
6916 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6917 \include "gregorian-init.ly"
6918 \score {
6919      \transpose c c' {
6920         % Scandicus Auctus Descendens
6921         \[ g \pes a \pes \auctum \descendens b \]
6922         s^\markup {"L"}
6923     }
6924 \paper { \neumeDemoPaper }}
6925 @end lilypond
6926 @tab
6927 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6928 \include "gregorian-init.ly"
6929 \score {
6930      \transpose c c' {
6931         % Scandicus Deminutus
6932         \[ g \pes a \pes \deminutum b \]
6933         s^\markup {"M"}
6934     }
6935 \paper { \neumeDemoPaper }}
6936 @end lilypond
6937
6938 @item
6939 @code{15. Salicus}
6940 @tab
6941 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6942 \include "gregorian-init.ly"
6943 \score {
6944      \transpose c c' {
6945         % Salicus
6946         \[ g \oriscus a \pes \virga b \]
6947         s^\markup {"N"}
6948     }
6949 \paper { \neumeDemoPaper }}
6950 @end lilypond
6951 @tab
6952 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6953 \include "gregorian-init.ly"
6954 \score {
6955      \transpose c c' {
6956         % Salicus Auctus Descendens
6957         \[ g \oriscus a \pes \auctum \descendens b \]
6958         s^\markup {"O"}
6959     }
6960 \paper { \neumeDemoPaper }}
6961 @end lilypond
6962 @tab
6963
6964 @item
6965 @code{16. Trigonus}
6966 @tab
6967 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6968 \include "gregorian-init.ly"
6969 \score {
6970    \transpose c c' {
6971     % Trigonus
6972     \[ \stropha b \stropha b \stropha a \]
6973     s^\markup {"P"}
6974   }
6975   \paper { \neumeDemoPaper }
6976 }
6977 @end lilypond
6978 @tab
6979 @tab
6980
6981 @end multitable
6982
6983
6984 Unlike most other neumes notation systems, the input language for
6985 neumes does not reflect the typographical appearance, but is designed
6986 to focus on musical meaning.  For example, @code{\[ a \pes b
6987 \flexa g \]} produces a Torculus consisting of three Punctum heads,
6988 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
6989 curved flexa shape and only a single Punctum head.  There is no
6990 command to explicitly typeset the curved flexa shape; the decision of
6991 when to typeset a curved flexa shape is based on the musical
6992 input.  The idea of this approach is to separate the musical aspects
6993 of the input from the notation style of the output.  This way, the
6994 same input can be reused to typeset the same music in a different
6995 style of Gregorian chant notation.
6996
6997 The following table shows the code fragments that produce the
6998 ligatures in the above neumes table.  The letter in the first column
6999 in each line of the below table indicates to which ligature in the
7000 above table it refers.  The second column gives the name of the
7001 ligature.  The third column shows the code fragment that produces this
7002 ligature, using @code{g}, @code{a} and @code{b} as example pitches.
7003
7004 @multitable @columnfractions .1 .4 .5
7005
7006 @item
7007 @b{#} @tab
7008 @b{Name} @tab
7009 @b{Input Language}
7010
7011 @item
7012 a @tab
7013 Punctum @tab
7014 @code{\[ b \]}
7015
7016 @item
7017 b @tab
7018 Punctum Inclinatum @tab
7019 @code{\[ \inclinatum b \]}
7020
7021 @item
7022 c @tab
7023 Punctum Auctum Ascendens @tab
7024 @code{\[ \auctum \ascendens b \]}
7025
7026 @item
7027 d @tab
7028 Punctum Auctum Descendens @tab
7029 @code{\[ \auctum \descendens b \]}
7030
7031 @item
7032 e @tab
7033 Punctum Inclinatum Auctum @tab
7034 @code{\[ \inclinatum \auctum b \]}
7035
7036 @item
7037 f @tab
7038 Punctum Inclinatum Parvum @tab
7039 @code{\[ \inclinatum \deminutum b \]}
7040
7041 @item
7042 g @tab
7043 Virga @tab
7044 @code{\[ \virga b \]}
7045
7046 @item
7047 h @tab
7048 Stropha @tab
7049 @code{\[ \stropha b \]}
7050
7051 @item
7052 i @tab
7053 Stropha Aucta @tab
7054 @code{\[ \stropha \auctum b \]}
7055
7056 @item
7057 j @tab
7058 Oriscus @tab
7059 @code{\[ \oriscus b \]}
7060
7061 @item
7062 k @tab
7063 Clivis vel Flexa @tab
7064 @code{\[ b \flexa g \]}
7065
7066 @item
7067 l @tab
7068 Clivis Aucta Descendens @tab
7069 @code{\[ b \flexa \auctum \descendens g \]}
7070
7071 @item
7072 m @tab
7073 Clivis Aucta Ascendens @tab
7074 @code{\[ b \flexa \auctum \ascendens g \]}
7075
7076 @item
7077 n @tab
7078 Cephalicus @tab
7079 @code{\[ b \flexa \deminutum g \]}
7080
7081 @item
7082 o @tab
7083 Podatus vel Pes @tab
7084 @code{\[ g \pes b \]}
7085
7086 @item
7087 p @tab
7088 Pes Auctus Descendens @tab
7089 @code{\[ g \pes \auctum \descendens b \]}
7090
7091 @item
7092 q @tab
7093 Pes Auctus Ascendens @tab
7094 @code{\[ g \pes \auctum \ascendens b \]}
7095
7096 @item
7097 r @tab
7098 Epiphonus @tab
7099 @code{\[ g \pes \deminutum b \]}
7100
7101 @item
7102 s @tab
7103 Pes Quassus @tab
7104 @code{\[ \oriscus g \pes \virga b \]}
7105
7106 @item
7107 t @tab
7108 Pes Quassus Auctus Descendens @tab
7109 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7110
7111 @item
7112 u @tab
7113 Quilisma Pes @tab
7114 @code{\[ \quilisma g \pes b \]}
7115
7116 @item
7117 v @tab
7118 Quilisma Pes Auctus Descendens @tab
7119 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7120
7121 @item
7122 w @tab
7123 Pes Initio Debilis @tab
7124 @code{\[ \deminutum g \pes b \]}
7125
7126 @item
7127 x @tab
7128 Pes Auctus Descendens Initio Debilis @tab
7129 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7130
7131 @item
7132 y @tab
7133 Torculus @tab
7134 @code{\[ a \pes b \flexa g \]}
7135
7136 @item
7137 z @tab
7138 Torculus Auctus Descendens @tab
7139 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7140
7141 @item
7142 A @tab
7143 Torculus Deminutus @tab
7144 @code{\[ a \pes b \flexa \deminutum g \]}
7145
7146 @item
7147 B @tab
7148 Torculus Initio Debilis @tab
7149 @code{\[ \deminutum a \pes b \flexa g \]}
7150
7151 @item
7152 C @tab
7153 Torculus Auctus Descendens Initio Debilis @tab
7154 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7155
7156 @item
7157 D @tab
7158 Torculus Deminutus Initio Debilis @tab
7159 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7160
7161 @item
7162 E @tab
7163 Porrectus @tab
7164 @code{\[ a \flexa g \pes b \]}
7165
7166 @item
7167 F @tab
7168 Porrectus Auctus Descendens @tab
7169 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7170
7171 @item
7172 G @tab
7173 Porrectus Deminutus @tab
7174 @code{\[ a \flexa g \pes \deminutum b \]}
7175
7176 @item
7177 H @tab
7178 Climacus @tab
7179 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7180
7181 @item
7182 I @tab
7183 Climacus Auctus @tab
7184 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7185
7186 @item
7187 J @tab
7188 Climacus Deminutus @tab
7189 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7190
7191 @item
7192 K @tab
7193 Scandicus @tab
7194 @code{\[ g \pes a \virga b \]}
7195
7196 @item
7197 L @tab
7198 Scandicus Auctus Descendens @tab
7199 @code{\[ g \pes a \pes \auctum \descendens b \]}
7200
7201 @item
7202 M @tab
7203 Scandicus Deminutus @tab
7204 @code{\[ g \pes a \pes \deminutum b \]}
7205
7206 @item
7207 N @tab
7208 Salicus @tab
7209 @code{\[ g \oriscus a \pes \virga b \]}
7210
7211 @item
7212 O @tab
7213 Salicus Auctus Descendens @tab
7214 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7215
7216 @item
7217 P @tab
7218 Trigonus @tab
7219 @code{\[ \stropha b \stropha b \stropha a \]}
7220
7221 @end multitable
7222
7223 @refcommands
7224
7225 The following head prefixes are supported
7226
7227 @cindex @code{\virga}
7228 @code{\virga},
7229 @cindex @code{\stropha}
7230 @code{\stropha},
7231 @cindex @code{\inclinatum}
7232 @code{\inclinatum},
7233 @cindex @code{\auctum}
7234 @code{\auctum},
7235 @cindex @code{\descendens}
7236 @code{\descendens},
7237 @cindex @code{\ascendens}
7238 @code{\ascendens},
7239 @cindex @code{\oriscus}
7240 @code{\oriscus},
7241 @cindex @code{\quilisma}
7242 @code{\quilisma},
7243 @cindex @code{\deminutum}
7244 @code{\deminutum}.
7245
7246 Head prefixes can be accumulated, though restrictions apply.  For
7247 example, either @code{\descendens} or @code{\ascendens} can be applied
7248 to a head, but not both to the same head.
7249
7250 @cindex @code{\pes}
7251 @cindex @code{\flexa}
7252 Two adjacent heads can be tied together with the @code{\pes} and
7253 @code{\flexa} infix commands for a rising and falling line of melody,
7254 respectively.
7255
7256
7257
7258 @node Gregorian Chant contexts
7259 @subsection Gregorian Chant contexts
7260
7261 @cindex VaticanaVoiceContext
7262 @cindex VaticanaStaffContext
7263
7264 The predefined @code{VaticanaVoiceContext} and
7265 @code{VaticanaStaffContext} can be used to engrave a piece of
7266 Gregorian Chant in the style of the Editio Vaticana.  These contexts
7267 initialize all relevant context properties and grob properties to
7268 proper values, so you can immediately go ahead entering the chant, as
7269 the following excerpt demonstrates
7270
7271 @lilypond[quote,raggedright,verbatim,noindent]
7272 \include "gregorian-init.ly"
7273 \score {
7274   <<
7275     \context VaticanaVoice = "cantus" {
7276       \override Score.BarNumber #'transparent = ##t {
7277         \[ c'\melisma c' \flexa a \]
7278         \[ a \flexa \deminutum g\melismaEnd \]
7279         f \divisioMinima
7280         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7281         c' \divisioMinima \break
7282         \[ c'\melisma c' \flexa a \]
7283         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7284       }
7285     }
7286     \lyricsto "cantus" \new Lyrics {
7287       San- ctus, San- ctus, San- ctus
7288     }
7289   >>
7290 }
7291 @end lilypond
7292
7293
7294 @node Mensural contexts
7295 @subsection Mensural contexts
7296
7297 @cindex MensuralVoiceContext
7298 @cindex MensuralStaffContext
7299
7300 The predefined @code{MensuralVoiceContext} and
7301 @code{MensuralStaffContext} can be used to engrave a piece in mensural
7302 style.  These contexts initialize all relevant context properties and
7303 grob properties to proper values, so you can immediately go ahead
7304 entering the chant, as the following excerpt demonstrates
7305
7306 @lilypond[quote,raggedright,verbatim,noindent]
7307 \score {
7308   <<
7309     \context MensuralVoice = "discantus" \transpose c c' {
7310       \override Score.BarNumber #'transparent = ##t {
7311         c'1\melisma bes a g\melismaEnd
7312         f\breve
7313         \[ f1\melisma a c'\breve d'\melismaEnd \]
7314         c'\longa
7315         c'\breve\melisma a1 g1\melismaEnd
7316         fis\longa^\signumcongruentiae
7317       }
7318     }
7319     \lyricsto "discantus" \new Lyrics {
7320       San -- ctus, San -- ctus, San -- ctus
7321     }
7322   >>
7323 }
7324 @end lilypond
7325
7326
7327 @node Figured bass
7328 @subsection Figured bass
7329
7330 @cindex Basso continuo
7331
7332 @c TODO: musicological blurb about FB
7333
7334
7335 LilyPond has limited support for figured bass
7336
7337 @lilypond[quote,verbatim,fragment]
7338 <<
7339   \context Voice  { \clef bass dis4  c d ais }
7340   \context FiguredBass \figuremode {
7341     < 6 >4 < 7 >8 < 6+ [_!] >
7342     < 6 >4 <6 5 [3+] >
7343   }
7344 >>
7345 @end lilypond
7346
7347 The support for figured bass consists of two parts: there is an input
7348 mode, introduced by @code{\figuremode}, where you can enter bass figures
7349 as numbers, and there is a context called @internalsref{FiguredBass} that
7350 takes care of making @internalsref{BassFigure} objects.
7351
7352 In figures input mode, a group of bass figures is delimited by
7353 @code{<} and @code{>}.  The duration is entered after the @code{>}
7354 @example
7355 <4 6>
7356 @end example
7357 @lilypond[quote,fragment]
7358 \context FiguredBass
7359 \figuremode { <4 6> }
7360 @end lilypond
7361
7362 Accidentals are added when you append @code{-}, @code{!}  and @code{+}
7363 to the numbers
7364
7365 @example
7366 <4- 6+ 7!>
7367 @end example
7368 @lilypond[quote,fragment]
7369 \context FiguredBass
7370 \figuremode { <4- 6+ 7!> }
7371 @end lilypond
7372
7373 Spaces or dashes may be inserted by using @code{_}.  Brackets are
7374 introduced with @code{[} and @code{]}
7375
7376 @example
7377 < [4 6] 8 [_! 12]>
7378 @end example
7379 @lilypond[quote,fragment]
7380 \context FiguredBass
7381 \figuremode { < [4 6] 8 [_! 12]> }
7382 @end lilypond
7383
7384 Although the support for figured bass may superficially resemble chord
7385 support, it works much simpler.  The @code{\figuremode} mode simply
7386 stores the numbers , and @internalsref{FiguredBass} context prints
7387 them as entered.  There is no conversion to pitches, and no
7388 realizations of the bass are played in the MIDI file.
7389
7390 Internally, the code produces markup texts.  You can use any of the
7391 markup text properties to override formatting.  For example, the
7392 vertical spacing of the figures may be set with @code{baseline-skip}.
7393
7394 @seealso
7395
7396 Program reference: @internalsref{BassFigureEvent} music, @internalsref{BassFigure} object, 
7397 and @internalsref{FiguredBass} context.
7398
7399 @refbugs
7400
7401 Slash notation for alterations is not supported.
7402
7403 @node Contemporary notation
7404 @section Contemporary notation
7405
7406 In the 20th century, composers have greatly expanded the musical
7407 vocabulary.  With this expansion, many innovations in musical notation
7408 have been tried.  The book ``Music Notation in the 20th century'' by
7409 Kurt Stone gives a comprehensive overview (see @ref{Literature
7410 list}).  In general, the use of new, innovative notation makes a piece
7411 harder to understand and perform and its use should therefore be
7412 avoided.  For this reason, support for contemporary notation in
7413 LilyPond is limited.
7414
7415
7416 @menu
7417 * Polymetric notation::         
7418 * Clusters::                    
7419 * Special fermatas::            
7420 * Feathered beams::             
7421 @end menu
7422
7423 @node Polymetric notation
7424 @subsection Polymetric notation
7425
7426 Double time signatures are not supported explicitly, but they can be
7427 faked.  In the next example, the markup for the time signature is
7428 created with a markup text.  This markup text is inserted in the
7429 @internalsref{TimeSignature} grob.
7430
7431 @lilypond[verbatim,raggedright]
7432
7433 % create 2/4 + 5/8
7434 tsMarkup =\markup  {
7435     \number { 
7436       \column < "2" "4" >
7437       \musicglyph #"scripts-stopped" 
7438       \bracket \column < "5" "8" >
7439     }
7440 }
7441
7442 {
7443   \override Staff.TimeSignature  #'print-function = #Text_interface::print
7444   \override Staff.TimeSignature  #'text = #tsMarkup
7445   \time 3/2
7446   c'2  \bar ":" c'4 c'4.
7447 }
7448 @end lilypond
7449
7450 Each staff can also have its own time signature.  This is done by
7451 moving the @internalsref{Timing_engraver} to @internalsref{Staff}
7452 context.
7453
7454 @verbatim
7455 \paper{
7456     \context{
7457         \Score
7458         \remove "Timing_engraver"
7459     }
7460     \context{
7461         \Staff
7462         \consists "Timing_engraver"
7463     }
7464 }       
7465 @end verbatim
7466
7467
7468 Now, each staff has its own time signature.
7469 @verbatim
7470 <<
7471     \new Staff {
7472         \time 3/4
7473         c4 c c | c c c |
7474     }
7475
7476     \new Staff {
7477         \time 2/4
7478         c4 c | c c | c c
7479     }
7480     \new Staff {
7481         \time 3/8
7482         c4. c8 c c c4. c8 c c
7483     }
7484 >>
7485 @end verbatim
7486
7487 @lilypond[raggedright]
7488 \paper{
7489     \context{
7490         \Score
7491         \remove "Timing_engraver"
7492     }
7493     \context{
7494         \Staff
7495         \consists "Timing_engraver"
7496     }
7497 }       
7498
7499 \relative c'  <<
7500     \new Staff {
7501         \time 3/4
7502         c4 c c | c c c |
7503     }
7504
7505     \new Staff {
7506         \time 2/4
7507         c4 c | c c | c c
7508     }
7509     \new Staff {
7510         \time 3/8
7511         c4. c8 c c c4. c8 c c
7512     }
7513 >>
7514 @end lilypond
7515
7516
7517 A different form of polymetric notation is where note lengths have
7518 different values across staves.
7519
7520 This notation can be created by setting a common time signature for
7521 each staff but replacing it manually using
7522 @code{timeSignatureFraction} to the desired fraction.  Then the printed
7523 durations in each staff are scaled to the common time signature.
7524 The latter is done with @code{\compressmusic}, which is similar to
7525 @code{\times}, but does not create a tuplet bracket.
7526
7527
7528 In this example, music with the time signatures of 3/4, 9/8 and 10/8 are
7529 used in parallel.  In the second staff, shown durations are multiplied by 
7530 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are 
7531 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
7532
7533 @lilypond[raggedright,verbatim]
7534 \relative c'  <<
7535     \new Staff {
7536         \time 3/4
7537         c4 c c | c c c |
7538     }
7539     \new Staff {
7540         \time 3/4
7541         \set Staff.timeSignatureFraction = #'(9 . 8)
7542         \compressmusic #'(2 . 3)
7543           \repeat unfold 6 { c8[ c c] }
7544     }
7545     \new Staff {
7546         \time 3/4
7547         \set Staff.timeSignatureFraction = #'(10 . 8)
7548         \compressmusic #'(3 . 5)
7549           { \repeat unfold 2 { c8[ c c] }
7550             \repeat unfold 2 { c8[  c] }
7551             |  c4. c4. \times 2/3 { c8 c c } c4  }
7552     }
7553 >>
7554 @end lilypond
7555
7556
7557
7558
7559 @refbugs
7560
7561 When using different time signatures in parallel, the spacing is
7562 aligned vertically, but bar lines distort the regular spacing.
7563
7564
7565
7566 @node Clusters
7567 @subsection Clusters
7568
7569 @cindex cluster
7570
7571 A cluster indicates a continuous range of pitches to be played.  They
7572 can be denoted as the envelope of a set of notes.  They are entered by
7573 applying the function @code{makeClusters} to a sequence of
7574 chords, e.g.
7575 @c
7576 @lilypond[quote,verbatim]
7577 \relative c'' 
7578   \makeClusters { <c e > <b f'> }
7579 @end lilypond
7580
7581 The following example (from
7582 @inputfileref{input/regression,cluster.ly}) shows what the result
7583 looks like
7584
7585 @lilypondfile[quote]{cluster.ly}
7586
7587 Ordinary notes and clusters can be put together in the same staff,
7588 even simultaneously.  In such a case no attempt is made to
7589 automatically avoid collisions between ordinary notes and clusters.
7590
7591 @seealso
7592
7593 Program reference: @internalsref{ClusterSpanner},
7594 @internalsref{ClusterSpannerBeacon},
7595 @internalsref{Cluster_spanner_engraver}, and
7596 @internalsref{ClusterNoteEvent}.
7597
7598 Examples: @inputfileref{input/regression,cluster.ly}.
7599
7600 @refbugs
7601
7602 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7603 accurately.  Use @code{<g a>8 <e a>8} instead.
7604
7605
7606
7607 @node Special fermatas
7608 @subsection Special fermatas
7609
7610 @cindex fermatas, special
7611
7612 In contemporary music notation, special fermata symbols denote breaks
7613 of differing lengths.  The following fermatas are supported
7614
7615 @lilypond[quote,raggedright]
7616 <<
7617     \oldaddlyrics  {
7618       b'
7619       ^\shortfermata
7620       _\shortfermata
7621       r
7622       b'
7623       ^\fermata
7624       _\fermata
7625
7626       r
7627       b'
7628       ^\longfermata
7629       _\longfermata
7630
7631       r
7632       b'
7633       ^\verylongfermata
7634       _\verylongfermata
7635     r
7636     }
7637     \context Lyrics \lyricmode {
7638       \override LyricText #'font-family = #'typewriter
7639       "shortfermata" "fermata"  "longfermata" "verylongfermata"
7640     }
7641 >>
7642 @end lilypond
7643
7644 See @ref{Articulations} for general instructions how to apply scripts
7645 such as fermatas to notes.
7646
7647 @node Feathered beams
7648 @subsection Feathered beams
7649
7650 Feathered beams are not supported natively, but they can be faked by
7651 forcing two beams to overlap.  Here is an example,
7652
7653 @lilypond[raggedright]
7654 \relative \new Staff <<
7655     \new Voice
7656     {
7657         \stemUp
7658         \once \override Voice.Beam #'positions = #'(0 . 0.5)
7659         c8[ c c c c ]
7660     }
7661     \new Voice {
7662         \stemUp
7663         \once \override Voice.Beam #'positions = #'(0 . -0.5) 
7664         c[ c c c c]
7665     }
7666 >>
7667 @end lilypond
7668
7669
7670
7671 @node Educational use
7672 @section Educational use
7673
7674 @menu
7675 * Balloon help::                
7676 * Blank music paper::           
7677 * Notation for excercises::     
7678 * Easy Notation note heads::    
7679 @end menu
7680
7681 @node Balloon help
7682 @subsection Balloon help
7683
7684 Elements of notation can be marked and named with the help of a square
7685 balloon.  The primary purpose of this feature is to explain notation.
7686
7687 The following example demonstrates its use.
7688
7689 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
7690 \context Voice
7691 \applyoutput
7692    #(add-balloon-text 'NoteHead "heads, or tails?"
7693     '(1 . -3))
7694 c8
7695 @end lilypond
7696
7697 @noindent
7698 The function @code{add-balloon-text} takes the name of a grob, the
7699 label to print, and the position where to put the label relative to 
7700 the object.  In the above example, the text ``heads or tails?'' ends 
7701 3 spaces below and 1 space to the right of the marked head.
7702
7703 @cindex balloon
7704 @cindex notation, explaining
7705
7706 @seealso
7707
7708 Program reference: @internalsref{text-balloon-interface}.
7709
7710 Examples: @inputfileref{input/regression,balloon.ly}.
7711
7712
7713
7714
7715 @node Blank music paper
7716 @subsection Blank music paper
7717
7718 A blank music paper can be produced also by using invisible notes, and
7719 removing @code{Bar_number_engraver}.
7720
7721
7722 @lilypond
7723 emptymusic =  {
7724   \repeat unfold 2 % Change this for more lines. 
7725   { s1\break }
7726   \bar "|."
7727 }
7728 \new Score \with {
7729     \override TimeSignature #'transparent = ##t
7730     defaultBarType = #""
7731     \remove Bar_number_engraver
7732 } <<
7733         \context Staff \emptymusic
7734         \context TabStaff \emptymusic
7735 >>
7736 @end lilypond
7737
7738
7739 @node Notation for excercises
7740 @subsection Notation for excercises
7741
7742 @cindex Blank Notes
7743
7744 Invisible (or transparent) notes can be useful, when weird tricks are
7745 needed; especially, a slur cannot be attach to a rest or spacer rest.
7746
7747
7748 @lilypond
7749 blanknotes = { \override NoteHead  #'transparent = ##t
7750                \override Stem  #'transparent = ##t }
7751 unblanknotes = { \revert NoteHead #'transparent
7752                  \revert Stem #'transparent }
7753
7754
7755 \relative c'' {
7756     c4 d4 
7757     \blanknotes e4 f4   \unblanknotes
7758     g4 a 
7759 }
7760 @end lilypond
7761
7762
7763 @node Easy Notation note heads
7764 @subsection Easy Notation note heads
7765
7766 @cindex easy notation
7767 @cindex Hal Leonard
7768
7769 The `easy play' note head includes a note name inside the head.  It is
7770 used in music for beginners
7771
7772 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
7773 \setEasyHeads
7774 c'2 e'4 f' | g'1
7775 @end lilypond
7776
7777 The command @code{\setEasyHeads} overrides settings for the
7778 @internalsref{NoteHead} object.  To make the letters readable, it has
7779 to be printed in a large font size.  To print with a larger font, see
7780 @ref{Setting global staff size}.
7781
7782 @refcommands
7783
7784 @cindex @code{\setEasyHeads}
7785 @code{\setEasyHeads}
7786