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