2 @c This file is part of lilypond.tely
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
9 @chapter Notation manual
11 This chapter describes all the different types of notation supported
12 by LilyPond. It is intended as a reference for users that are already
13 somewhat familiar with LilyPond.
17 * Easier music entry::
27 * Other instrument specific notation::
31 * Formatting cue notes::
33 * Contemporary notation::
37 @c FIXME: Note entry vs Music entry at top level menu is confusing.
43 This section is about basic notation elements notes, rests and
44 related constructs, such as stems, tuplets and ties.
49 * Chromatic alterations::
67 A note is printed by specifying its pitch and then its duration,
69 @lilypond[quote,verbatim]
70 { cis'4 d'8 e'16 c'16 }
78 @cindex Note specification
80 @cindex entering notes
82 The most common syntax for pitch entry is used for standard notes and
83 @code{\chordmode} modes. In these modes, pitches may be designated by
84 names. The notes are specified by the letters @code{a} through
85 @code{g}. The octave is formed with notes ranging from @code{c}
86 to @code{b}. The pitch @code{c} is an octave below middle C and the
87 letters span the octave above that C
89 @lilypond[fragment,verbatim,noindent]
91 a,4 b, c d e f g a b c' d' e' \clef treble f' g' a' b' c''
94 @cindex note names, Dutch
96 A sharp is formed by adding @code{-is} to the end of a pitch name and
97 a flat is formed by adding @code{-es}. Double sharps and double flats
98 are obtained by adding @code{-isis} or @code{-eses}. These
99 names are the Dutch note names. In Dutch, @code{aes} is contracted to
100 @code{as}, but both forms are accepted. Similarly, both
101 @code{es} and @code{ees} are accepted
103 @lilypond[fragment,quote,verbatim,relative=2]
111 There are predefined sets of note names for various other languages.
112 To use them, include the language specific init file. For
113 example: @code{\include "english.ly"}. The available language files
114 and the note names they define are
119 Note Names sharp flat
120 nederlands.ly c d e f g a bes b -is -es
121 english.ly c d e f g a bf b -s/-sharp -f/-flat
123 deutsch.ly c d e f g a b h -is -es
124 norsk.ly c d e f g a b h -iss/-is -ess/-es
125 svenska.ly c d e f g a b h -iss -ess
126 italiano.ly do re mi fa sol la sib si -d -b
127 catalan.ly do re mi fa sol la sib si -d/-s -b
128 espanol.ly do re mi fa sol la sib si -s -b
137 The optional octave specification takes the form of a series of
138 single quote (`@code{'}') characters or a series of comma
139 (`@code{,}') characters. Each @code{'} raises the pitch by one
140 octave; each @code{,} lowers the pitch by an octave
142 @lilypond[quote,fragment,verbatim]
143 c' c'' es' g' as' gisis' ais'
146 @c FIXME: we need this info (hide/unhide) somewhere in the manual, but this ain't the place. -gp
148 Notes can be hidden and unhidden with the following commands
150 @cindex @code{\hideNotes}
152 @cindex @code{\unHideNotes}
158 Program reference: @internalsref{NoteEvent}, and @internalsref{NoteHead}.
162 @node Chromatic alterations
163 @subsection Chromatic alterations
165 Normally accidentals are printed automatically, but you may also
166 print them manually. A reminder accidental
167 @cindex reminder accidental
169 can be forced by adding an exclamation mark @code{!}
170 after the pitch. A cautionary accidental
171 @cindex cautionary accidental
172 @cindex parenthesized accidental
173 (i.e. an accidental within parentheses) can be obtained by adding the
174 question mark `@code{?}' after the pitch.
176 @lilypond[quote,fragment,verbatim]
177 cis' cis' cis'! cis'?
183 The automatic production of accidentals can be tuned in many
184 ways. For more information, refer to @ref{Automatic accidentals}.
189 @subsection Micro tones
191 Half-flats and half-sharps are formed by adding @code{-eh} and
192 @code{-ih}; the following is a series of Cs with increasing pitches
194 @cindex quarter tones
195 @cindex semi-flats, semi-sharps
197 @lilypond[verbatim,quote,relative=2,fragment]
198 { ceseh ceh cih cisih }
201 Micro tones are also exported to the MIDI file
206 There are no generally accepted standards for denoting three quarter
207 flats, so LilyPond's symbol does not conform to any standard.
212 A chord is formed by a enclosing a set of pitches in @code{<} and
213 @code{>}. A chord may be followed by a duration, and a set of
214 articulations, just like simple notes
216 @lilypond[verbatim,fragment,quote,relative=1]
228 Rests are entered like notes, with the note name @code{r}
230 @lilypond[fragment,quote,raggedright,verbatim]
234 Whole bar rests, centered in middle of the bar,
235 must be done with multi-measure rests. They are discussed in
236 @ref{Multi measure rests}.
239 A rest's vertical position may be explicitly specified by entering a
240 note with the @code{\rest} keyword appended. This makes manual
241 formatting in polyphonic music easier. Automatic rest collision
242 formatting will leave these rests alone
244 @lilypond[fragment,quote,raggedright,verbatim]
250 Program reference: @internalsref{RestEvent}, and @internalsref{Rest}.
257 @cindex Invisible rest
262 An invisible rest (also called a `skip') can be entered like a note
263 with note name `@code{s}' or with @code{\skip @var{duration}}
265 @lilypond[fragment,quote,raggedright,verbatim,relative=2]
266 a4 a4 s4 a4 \skip 1 a4
269 The @code{s} syntax is only available in note mode and chord mode. In
270 other situations, for example, when entering lyrics, you should use
271 the @code{\skip} command
273 @lilypond[quote,raggedright,verbatim]
276 \new Lyrics \lyricmode { \skip 2 bla1 }
280 The skip command is merely an empty musical placeholder. It does not
281 produce any output, not even transparent output.
283 The @code{s} skip command does create @internalsref{Staff} and
284 @internalsref{Voice} when necessary, similar to note and rest
285 commands. For example, the following results in an empty staff.
287 @lilypond[quote,raggedright,verbatim]
291 The fragment @code{@{ \skip 4 @} } would produce an empty page.
295 Program reference: @internalsref{SkipEvent}, @internalsref{SkipMusic}.
300 @subsection Durations
304 @cindex @code{\longa}
305 @cindex @code{\breve}
306 @cindex @code{\maxima}
309 In Note, Chord, and Lyrics mode, durations are designated by numbers
310 and dots: durations are entered as their reciprocal values. For example,
311 a quarter note is entered using a @code{4} (since it is a 1/4 note), while
312 a half note is entered using a @code{2} (since it is a 1/2 note). For notes
313 longer than a whole you must use variables
317 c'1 c'2 c'4 c'8 c'16 c'32 c'64 c'64
319 r1 r2 r4 r8 r16 r32 r64 r64
322 @lilypond[quote,noindent]
325 a\breve*1/2 \autoBeamOff
326 a1 a2 a4 a8 a16 a32 a64 a64
329 r\longa*1/4 r\breve *1/2
330 r1 r2 r4 r8 r16 r32 r64 r64
336 \remove "Clef_engraver"
337 \override StaffSymbol #'transparent = ##t
338 \override TimeSignature #'transparent = ##t
339 \override BarLine #'transparent = ##t
340 \consists "Pitch_squash_engraver"
346 If the duration is omitted then it is set to the previously entered
347 duration. The default for the first note is a quarter note.
349 @lilypond[quote,raggedright,verbatim,fragment]
357 @node Augmentation dots
358 @subsection Augmentation dots
361 To obtain dotted note lenghts, simply add a dot (`@code{.}') to
362 the number. Double-dotted notes are produced in a similar way.
364 @lilypond[quote,fragment,verbatim]
365 a'4 b' c''4. b'8 a'4. b'4.. c''8.
370 Dots are normally moved up to avoid staff lines, except in polyphonic
371 situations. The following commands may be used to force a particular
374 @cindex @code{\dotsUp}
376 @cindex @code{\dotsDown}
378 @cindex @code{\dotsNeutral}
383 Program reference: @internalsref{Dots}, and @internalsref{DotColumn}.
385 @node Scaling durations
386 @subsection Scaling durations
388 You can alter the length of duration by a fraction @var{N/M}
389 appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}). This
390 will not affect the appearance of the notes or rests produced.
392 In the following example, the first three notes take up exactly two
393 beats, but no triplet bracket is printed.
394 @lilypond[quote,fragment,relative=2,verbatim]
396 a4*2/3 gis4*2/3 a4*2/3
404 This manual: @ref{Tuplets}
407 @c TODO: I'm not certain that Stems belong here in the manual. -gp
411 Whenever a note is found, a @internalsref{Stem} object is created
412 automatically. For whole notes and rests, they are also created but
417 @cindex @code{\stemUp}
419 @cindex @code{\stemDown}
421 @cindex @code{\stemNeutral}
432 A tie connects two adjacent note heads of the same pitch. The tie in
433 effect extends the length of a note. Ties should not be confused with
434 slurs, which indicate articulation, or phrasing slurs, which indicate
435 musical phrasing. A tie is entered using the tilde symbol `@code{~}'
437 @lilypond[quote,fragment,verbatim]
438 e' ~ e' <c' e' g'> ~ <c' e' g'>
441 When a tie is applied to a chord, all note heads whose pitches match
442 are connected. When no note heads match, no ties will be created.
444 A tie is just a way of extending a note duration, similar to the
445 augmentation dot. The following example shows two ways of notating
446 exactly the same concept
448 @lilypond[quote,fragment,raggedright]
449 \time 3/4 c'2. c'2 ~ c'4
453 Ties are used either when the note crosses a bar line, or when dots
454 cannot be used to denote the rhythm. When using ties, larger note
455 values should be aligned to subdivisions of the measure, eg.
459 r8 c8 ~ c2 r4 | r8^"not" c2 ~ c8 r4
463 If you need to tie a lot of notes over bars, it may be easier to use
464 automatic note splitting (see @ref{Automatic note splitting}). This
465 mechanism automatically splits long notes, and ties them across bar
471 @cindex @code{\tieUp}
473 @cindex @code{\tieDown}
475 @cindex @code{\tieNeutral}
477 @cindex @code{\tieDotted}
479 @cindex @code{\tieSolid}
484 In this manual: @ref{Automatic note splitting}.
486 Program reference: @internalsref{TieEvent}, @internalsref{Tie}.
491 Switching staves when a tie is active will not produce a slanted tie.
493 Formatting of ties is a difficult subject. The results are often not
501 @cindex @code{\times}
503 Tuplets are made out of a music expression by multiplying all durations
506 @cindex @code{\times}
508 \times @var{fraction} @var{musicexpr}
512 The duration of @var{musicexpr} will be multiplied by the fraction.
513 The fraction's denominator will be printed over the notes, optionally
514 with a bracket. The most common tuplet is the triplet in which 3
515 notes have the length of 2, so the notes are 2/3 of their written
518 @lilypond[quote,fragment,verbatim]
519 g'4 \times 2/3 {c'4 c' c'} d'4 d'4
522 The property @code{tupletSpannerDuration} specifies how long each
523 bracket should last. With this, you can make lots of tuplets while
524 typing @code{\times} only once, thus saving lots of typing. In the next
525 example, there are two triplets shown, while @code{\times} was only
528 @lilypond[quote,fragment,relative=1,raggedright,verbatim]
529 \set tupletSpannerDuration = #(ly:make-moment 1 4)
530 \times 2/3 { c'8 c c c c c }
533 The format of the number is determined by the property
534 @code{tupletNumberFormatFunction}. The default prints only the
535 denominator, but if it is set to the Scheme function
536 @code{fraction-tuplet-formatter}, @var{num}:@var{den} will be printed
540 @cindex @code{tupletNumberFormatFunction}
541 @cindex tuplet formatting
546 @cindex @code{\tupletUp}
548 @cindex @code{\tupletDown}
550 @cindex @code{\tupletNeutral}
551 @code{\tupletNeutral}.
555 User manual: @ref{Changing context properties on the fly} for the
559 Program reference: @internalsref{TupletBracket}, and @internalsref{TimeScaledMusic}.
561 Examples: @inputfileref{input/regression,tuplet-nest.ly}.
565 Nested tuplets are not formatted automatically. In this case, outer
566 tuplet brackets should be moved manually, which is demonstrated in
567 @inputfileref{input/regression,tuplet-nest.ly}.
571 @node Easier music entry
572 @section Easier music entry
575 This section deals with tricks and features of the input language that
576 were added solely to help entering music and finding and correcting
577 mistakes. There are also external tools that make debugging easier.
578 See @ref{Point and click} for more information.
580 It is also possible to enter and edit music using other programs, such as
581 GUI interfaces or MIDI sequencers. Refer to the LilyPond
582 website for more information.
589 * Skipping corrected music::
590 * Automatic note splitting::
596 @node Relative octaves
597 @subsection Relative octaves
599 @cindex relative octave specification
601 Octaves are specified by adding @code{'} and @code{,} to pitch names.
602 When you copy existing music, it is easy to accidentally put a pitch
603 in the wrong octave and hard to find such an error. The relative
604 octave mode prevents these errors by making the mistakes much
605 larger: a single error puts the rest of the piece off by one octave
607 @cindex @code{\relative}
609 \relative @var{startpitch} @var{musicexpr}
613 \relative @var{musicexpr}
616 The octave of notes that appear in @var{musicexpr} are calculated as
617 follows: if no octave changing marks are used, the basic interval
618 between this and the last note is always taken to be a fourth or
619 less. This distance is determined without regarding alterations; a
620 @code{fisis} following a @code{ceses} will be put above the
621 @code{ceses}. In other words, a doubly-augmented fourth is considered
622 a smaller interval than a diminshed fifth, even though the fourth is
623 seven semitones while the fifth is only six semitones.
625 The octave changing marks @code{'} and @code{,} can be added to raise
626 or lower the pitch by an extra octave. Upon entering relative mode,
627 an absolute starting pitch can be specified that will act as the
628 predecessor of the first note of @var{musicexpr}. If no starting pitch
629 is specified, then middle C is used as a start.
631 Here is the relative mode shown in action
632 @lilypond[quote,fragment,raggedright,verbatim]
638 Octave changing marks are used for intervals greater than a fourth
639 @lilypond[quote,fragment,verbatim]
645 If the preceding item is a chord, the first note of the chord is used
646 to determine the first note of the next chord
648 @lilypond[quote,fragment,verbatim]
656 The pitch after the @code{\relative} contains a note name.
659 The relative conversion will not affect @code{\transpose},
660 @code{\chordmode} or @code{\relative} sections in its argument. To use
661 relative within transposed music, an additional @code{\relative} must
662 be placed inside @code{\transpose}.
665 @subsection Octave check
668 Octave checks make octave errors easier to correct: a note may be
669 followed by @code{=}@var{quotes} which indicates what its absolute
670 octave should be. In the following example,
672 \relative c'' @{ c='' b=' d,='' @}
676 @c take care with @code, adds confusing quotes.
677 the @code{d} will generate a warning, because a @code{d''} is expected
678 (because @code{b'} to @code{d''} is only a third), but a @code{d}' is
679 found. In the output, the octave is corrected to be a @code{d''} and
680 the next note is calculated relative to @code{d''} instead of @code{d'}.
684 There is also a syntax that is separate from the notes. The syntax
690 This checks that @var{pitch} (without quotes) yields @var{pitch} (with
691 quotes) in \relative mode. If not, a warning is printed, and the
694 In the example below, the first check passes without incident, since
695 the @code{e} (in relative mode) is within a fifth of @code{a'}. However,
696 the second check produces a warning, since the @code{e} is not within
697 a fifth of @code{b'}. The warning message is printed, and the octave
698 is adjusted so that the following notes are in the correct octave
710 The octave of a note following an octave check is determined with
711 respect to the note preceding it. In the next fragment, the last note
712 is a @code{a'}, above middle C. That means that the @code{\octave}
713 check passes successfully, so the check could be deleted without changing
714 the output of the piece.
716 @lilypond[quote,verbatim,fragment]
725 @subsection Bar check
729 @cindex @code{barCheckSynchronize}
732 Bar checks help detect errors in the durations. A bar check is
733 entered using the bar symbol, `@code{|}'. Whenever it is encountered
734 during interpretation, it should fall on a measure boundary. If it
735 does not, a warning is printed. In the next example, the second bar
736 check will signal an error
738 \time 3/4 c2 e4 | g2 |
741 Bar checks can also be used in lyrics, for example
746 Twin -- kle | Twin -- kle
751 @cindex @code{skipTypesetting}
753 Failed bar checks are caused by entering incorrect
754 durations. Incorrect durations often completely garble up the score,
755 especially if the score is polyphonic, so a good place to start correcting
756 input is by scanning for failed bar checks and incorrect durations. To
757 speed up this process, the @code{skipTypesetting} feature may be
758 used. It is described in the next section.
761 @cindex @code{pipeSymbol}
763 It is also possible to redefine the meaning of @code{|}. This is done
764 by assigning a music expression to @code{pipeSymbol},
766 @lilypond[quote,raggedright,verbatim]
767 pipeSymbol = \bar "||"
773 @node Skipping corrected music
774 @subsection Skipping corrected music
776 The property @code{Score.skipTypesetting} can be used to switch on and
777 off typesetting completely during the interpretation phase. When
778 typesetting is switched off, the music is processed much more
779 quickly. This can be used to skip over the parts of a score that
780 have already been checked for errors
782 @lilypond[quote,fragment,raggedright,verbatim]
785 \set Score.skipTypesetting = ##t
787 \set Score.skipTypesetting = ##f
791 In polyphonic music, @code{Score.skipTypesetting} will affect all
792 voices and staves, saving even more time.
794 @node Automatic note splitting
795 @subsection Automatic note splitting
797 Long notes can be converted automatically to tied notes. This is done
798 by replacing the @internalsref{Note_heads_engraver} by the
799 @internalsref{Completion_heads_engraver}.
800 In the following examples, notes crossing the bar line are split and tied.
803 @lilypond[quote,fragment,verbatim,relative=1,raggedright]
805 \remove "Note_heads_engraver"
806 \consists "Completion_heads_engraver"
808 c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2
812 This engraver splits all running notes at the bar line, and inserts
813 ties. One of its uses is to debug complex scores: if the measures are
814 not entirely filled, then the ties exactly show how much each measure
819 Not all durations (especially those containing tuplets) can be
820 represented exactly with normal notes and dots, but the engraver will
825 Examples: @inputfileref{input/regression,completion-heads.ly}.
829 Program reference: @internalsref{Completion_heads_engraver}.
833 @section Staff notation
835 This section describes music notation that occurs on staff level,
836 such as key signatures, clefs and time signatures.
838 @cindex Staff notation
849 * Time administration::
850 * Controlling formatting of prefatory matter::
854 @subsection Staff symbol
856 @cindex adjusting staff symbol
858 Notes, dynamic signs, etc. are grouped
859 with a set of horizontal lines, into a staff (plural `staves'). In our
860 system, these lines are drawn using a separate layout object called
864 @cindex staff lines, setting number of
865 @cindex staff lines, setting thickness of
866 @cindex thickness of staff lines, setting
867 @cindex number of staff lines, setting
871 Program reference: @internalsref{StaffSymbol}.
873 Examples: @inputfileref{input/test,staff-lines.ly},
874 @inputfileref{input/test,staff-size.ly}.
878 If a staff is ended halfway a piece, the staff symbol may not end
879 exactly on the bar line.
883 @subsection Key signature
884 @cindex Key signature
888 The key signature indicates the scale in which a piece is played. It
889 is denoted by a set of alterations (flats or sharps) at the start of
893 Setting or changing the key signature is done with the @code{\key}
896 @code{\key} @var{pitch} @var{type}
899 @cindex @code{\minor}
900 @cindex @code{\major}
901 @cindex @code{\minor}
902 @cindex @code{\ionian}
903 @cindex @code{\locrian}
904 @cindex @code{\aeolian}
905 @cindex @code{\mixolydian}
906 @cindex @code{\lydian}
907 @cindex @code{\phrygian}
908 @cindex @code{\dorian}
910 Here, @var{type} should be @code{\major} or @code{\minor} to get
911 @var{pitch}-major or @var{pitch}-minor, respectively.
912 The standard mode names @code{\ionian},
913 @code{\locrian}, @code{\aeolian}, @code{\mixolydian}, @code{\lydian},
914 @code{\phrygian}, and @code{\dorian} are also defined.
916 This command sets the context property
917 @internalsref{Staff}.@code{keySignature}. Non-standard key signatures
918 can be specified by setting this property directly.
920 Accidentals and key signatures often confuse new users, because
921 unaltered notes get natural signs depending on the key signature. For
922 more information, see @ref{More about pitches}.
926 Program reference: @internalsref{KeyChangeEvent},
927 @internalsref{KeyCancellation} and @internalsref{KeySignature}.
929 @cindex @code{keySignature}
936 The clef indicates which lines of the staff correspond to which
940 The clef can be set with the @code{\clef} command
941 @lilypond[quote,fragment,verbatim]
942 { c''2 \clef alto g'2 }
945 Supported clef-names include
946 @c Moved standard clefs to the top /MB
950 @item treble, violin, G, G2
963 G clef on 1st line, so-called French violin clef
968 @cindex mezzosoprano clef
971 @cindex baritone clef
974 @cindex varbaritone clef
985 By adding @code{_8} or @code{^8} to the clef name, the clef is
986 transposed one octave down or up, respectively, and @code{_15} and
987 @code{^15} transposes by two octaves. The argument @var{clefname}
988 must be enclosed in quotes when it contains underscores or digits. For
992 @cindex choral tenor clef
993 @lilypond[quote,verbatim,fragment,relative=1]
997 This command is equivalent to setting @code{clefGlyph},
998 @code{clefPosition} (which controls the Y position of the clef),
999 @code{centralCPosition} and @code{clefOctavation}. A clef is printed
1000 when any of these properties are changed. The following example shows
1001 possibilities when setting properties manually.
1005 \set Staff.clefGlyph = #"clefs-F"
1006 \set Staff.clefPosition = #2
1008 \set Staff.clefGlyph = #"clefs-G"
1010 \set Staff.clefGlyph = #"clefs-C"
1012 \set Staff.clefOctavation = #7
1014 \set Staff.clefOctavation = #0
1015 \set Staff.clefPosition = #0
1025 Program reference: @internalsref{Clef}.
1029 @node Ottava brackets
1030 @subsection Ottava brackets
1032 `Ottava' brackets introduce an extra transposition of an octave for
1033 the staff. They are created by invoking the function
1034 @code{set-octavation}
1040 @lilypond[quote,verbatim,fragment]
1050 The @code{set-octavation} function also takes -1 (for 8va bassa) and 2
1051 (for 15ma) as arguments. Internally the function sets the properties
1052 @code{ottavation} (e.g. to @code{"8va"}) and
1053 @code{centralCPosition}. For overriding the text of the bracket, set
1054 @code{ottavation} after invoking @code{set-octavation}, i.e.,
1059 \set Staff.ottavation = #"8"
1066 Program reference: @internalsref{OttavaBracket}.
1068 Examples: @inputfileref{input/regression,ottava.ly},
1069 @inputfileref{input/regression,ottava-broken.ly}.
1073 @code{set-octavation} will get confused when clef changes happen
1074 during an octavation bracket.
1079 @node Time signature
1080 @subsection Time signature
1081 @cindex Time signature
1083 @cindex @code{\time}
1085 Time signature indicates the metrum of a piece: a regular pattern of
1086 strong and weak beats. It is denoted by a fraction at the start of the
1090 The time signature is set or changed by the @code{\time}
1092 @lilypond[quote,fragment,verbatim]
1093 \time 2/4 c'2 \time 3/4 c'2.
1096 The symbol that is printed can be customized with the @code{style}
1097 property. Setting it to @code{#'()} uses fraction style for 4/4 and
1100 @lilypond[fragment,verbatim]
1103 \override Staff.TimeSignature #'style = #'()
1110 There are many more options for its layout. See @ref{Ancient time
1111 signatures} for more examples.
1114 This command sets the property @code{timeSignatureFraction},
1115 @code{beatLength} and @code{measureLength} in the @code{Timing}
1116 context, which is normally aliased to @internalsref{Score}. The
1117 property @code{measureLength} determines where bar lines should be
1118 inserted, and how automatic beams should be generated. Changing the
1119 value of @code{timeSignatureFraction} also causes the symbol to be
1122 More options are available through the Scheme function
1123 @code{set-time-signature}. In combination with the
1124 @internalsref{Measure_grouping_engraver}, it will create
1125 @internalsref{MeasureGrouping} signs. Such signs ease reading
1126 rhythmically complex modern music. In the following example, the 9/8
1127 measure is subdivided in 2, 2, 2 and 3. This is passed to
1128 @code{set-time-signature} as the third argument @code{(2 2 2 3)}
1130 @lilypond[quote,raggedright,verbatim]
1133 #(set-time-signature 9 8 '(2 2 2 3))
1134 g8[ g] d[ d] g[ g] a8[( bes g]) |
1135 #(set-time-signature 5 8 '(3 2))
1141 \consists "Measure_grouping_engraver"
1149 Program reference: @internalsref{TimeSignature}, and @internalsref{Timing_engraver}.
1154 Automatic beaming does not use the measure grouping specified with
1155 @code{set-time-signature}.
1157 @node Partial measures
1158 @subsection Partial measures
1161 @cindex partial measure
1162 @cindex measure, partial
1163 @cindex shorten measures
1164 @cindex @code{\partial}
1166 Partial measures, for example in upsteps, are entered using the
1167 @code{\partial} command
1168 @lilypond[quote,fragment,verbatim,relative=2]
1169 \partial 16*5 c16 cis d dis e | a2. c,4 | b2
1172 The syntax for this command is
1174 \partial @var{duration}
1176 This is internally translated into
1178 \set Timing.measurePosition = -@var{length of duration}
1181 The property @code{measurePosition} contains a rational number
1182 indicating how much of the measure has passed at this point.
1186 This command does not take into account grace notes at the start of
1187 the music. When a piece starts with graces notes in the pickup, then
1188 the @code{\partial} should follow the grace notes
1190 @lilypond[verbatim,relative,fragment]
1200 @node Unmetered music
1201 @subsection Unmetered music
1205 Bar lines and bar numbers are calculated automatically. For unmetered
1206 music (e.g. cadenzas), this is not desirable. By setting
1207 @code{Score.timing} to false, this automatic timing can be switched
1208 off. Empty bar lines,
1215 indicate where line breaks can occur.
1219 @cindex @code{\cadenzaOn}
1221 @cindex @code{\cadenzaOff}
1228 @subsection Bar lines
1232 @cindex measure lines
1236 Bar lines delimit measures, but are also used to indicate repeats.
1237 Normally, they are inserted automatically. Line breaks may only
1238 happen on bar lines.
1240 Special types of bar lines can be forced with the @code{\bar} command
1242 @lilypond[quote,relative=2,fragment,verbatim]
1246 The following bar types are available
1247 @lilypondfile[]{bar-lines.ly}
1249 For allowing line breaks, there is a special command,
1253 This will insert an invisible bar line, and allow line breaks at this
1256 In scores with many staves, a @code{\bar} command in one staff is
1257 automatically applied to all staves. The resulting bar lines are
1258 connected between different staves of a @internalsref{StaffGroup}
1260 @lilypond[quote,fragment,verbatim]
1262 \context StaffGroup <<
1268 \new Staff { \clef bass c4 g e g }
1270 \new Staff { \clef bass c2 c2 }
1275 The command @code{\bar }@var{bartype} is a short cut for doing
1276 @code{\set Timing.whichBar = }@var{bartype}. Whenever @code{whichBar}
1277 is set to a string, a bar line of that type is created.
1279 A bar line is created whenever the @code{whichBar} property is set.
1280 At the start of a measure it is set to the contents of
1281 @code{defaultBarType}. The contents of @code{repeatCommands} are used
1282 to override default measure bars.
1284 @cindex @code{whichBar}
1285 @cindex @code{repeatCommands}
1286 @cindex @code{defaultBarType}
1288 You are encouraged to use @code{\repeat} for repetitions. See
1295 In this manual: @ref{Repeats}, @ref{System start delimiters}
1298 Program reference: @internalsref{BarLine} (created at
1299 @internalsref{Staff} level), @internalsref{SpanBar} (across staves).
1301 @cindex bar lines at start of system
1302 @cindex start of system
1306 Examples: @inputfileref{input/test,bar-lines.ly},
1309 @node Time administration
1310 @subsection Time administration
1312 Time is administered by the @internalsref{Time_signature_engraver},
1313 which usually lives in the @internalsref{Score} context.
1314 The bookkeeping deals with the following variables
1317 @item currentBarNumber
1320 the length of the measures in the current time signature. For a 4/4
1321 time this is 1, and for 6/8 it is 3/4.
1322 @item measurePosition
1323 the point within the measure where we currently are. This quantity
1324 is reset to 0 whenever it exceeds @code{measureLength}. When that happens,
1325 @code{currentBarNumber} is incremented.
1327 if set to true, the above variables are updated for every time
1328 step. When set to false, the engraver stays in the current measure
1332 Timing can be changed by setting any of these variables explicitly.
1333 In the next example, the 4/4 time signature is printed, but
1334 @code{measureLength} is set to 5/4. After a while, the measure is
1335 shortened by 1/8, by setting @code{measurePosition} to -3/8 at 2/4 in
1336 the measure, so the next bar line will fall at 2/4 + 3/8.
1340 \set Score.measureLength = #(ly:make-moment 5 4)
1344 \set Score.measurePosition = #(ly:make-moment -3 8)
1351 @node Controlling formatting of prefatory matter
1352 @subsection Controlling formatting of prefatory matter
1354 TODO Somebody needs to explain this example, but I don't know what
1355 they're trying to do, so it won't be me. -gp
1359 \override Staff.Clef #'break-visibility = #end-of-line-visible
1360 \override Staff.KeySignature #'break-visibility = #end-of-line-visible
1361 \set Staff.explicitClefVisibility = #end-of-line-visible
1362 \set Staff.explicitKeySignatureVisibility = #end-of-line-visible
1364 % We want the time sig to take space, otherwise there is not
1365 % enough white at the start of the line.
1368 \override Staff.TimeSignature #'transparent = ##t
1369 \set Score.defaultBarType = #"empty"
1389 Polyphony in music refers to having more than one voice occuring in
1390 a piece of music. Polyphony in LilyPond refers to having more than
1391 one voice on the same staff.
1394 * Writing polyphonic music::
1397 @node Writing polyphonic music
1398 @subsection Writing polyphonic music
1401 The easiest way to enter fragments with more than one voice on a staff
1402 is to split chords using the separator @code{\\}. You can use it for
1403 small, short-lived voices or for single chords
1407 @lilypond[quote,verbatim,fragment]
1408 \context Staff \relative c'' {
1409 c4 << { f d e } \\ { b c2 } >>
1410 c4 << g' \\ b, \\ f' \\ d >>
1414 The separator causes @internalsref{Voice} contexts@footnote{Polyphonic
1415 voices are sometimes called ``layers'' in other notation packages}
1417 to be instantiated. They bear the names @code{"1"}, @code{"2"}, etc. In
1418 each of these contexts, vertical direction of slurs, stems, etc. is set
1421 @cindex @code{\voiceOne}
1422 @cindex @code{\voiceFour}
1424 This can also be done by instantiating @internalsref{Voice} contexts
1425 by hand, and using @code{\voiceOne}, up to @code{\voiceFour} to assign
1426 a stem directions and horizontal shift for each part
1429 @lilypond[quote,raggedright,verbatim]
1432 \new Voice { \voiceOne cis2 b }
1433 \new Voice { \voiceThree b4 ais ~ ais4 gis4 }
1434 \new Voice { \voiceTwo fis4~ fis4 f ~ f } >>
1438 The command @code{\oneVoice} will revert back to the normal setting.
1439 @cindex @code{\oneVoice}
1442 Normally, note heads with a different number of dots are not merged, but
1443 when the object property @code{merge-differently-dotted} is set in
1444 the @internalsref{NoteCollision} object, they are merged
1445 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
1448 \override Staff.NoteCollision
1449 #'merge-differently-dotted = ##t
1451 } \\ { g8.[ f16] g8.[ f16] } >>
1454 Similarly, you can merge half note heads with eighth notes, by setting
1455 @code{merge-differently-headed}
1456 @lilypond[quote,fragment,relative=2,verbatim]
1459 \override Staff.NoteCollision
1460 #'merge-differently-headed = ##t
1461 c8 c4. } \\ { c2 c2 } >>
1464 LilyPond also vertically shifts rests that are opposite of a stem,
1467 @lilypond[quote,raggedright,fragment,verbatim]
1468 \context Voice << c''4 \\ r4 >>
1476 @cindex @code{\oneVoice}
1478 @cindex @code{\voiceOne}
1480 @cindex @code{\voiceTwo}
1482 @cindex @code{\voiceThree}
1484 @cindex @code{\voiceFour}
1489 @cindex @code{\shiftOn}
1491 @cindex @code{\shiftOnn}
1493 @cindex @code{\shiftOnnn}
1495 @cindex @code{\shiftOff}
1496 @code{\shiftOff}: these commands specify in what chords of the current
1497 voice should be shifted. The outer voices (normally: voice one and
1498 two) have @code{\shiftOff}, while the inner voices (three and four)
1499 have @code{\shiftOn}. @code{\shiftOnn} and @code{\shiftOnnn} define
1500 further shift levels.
1503 When LilyPond cannot cope, the @code{force-hshift}
1504 property of the @internalsref{NoteColumn} object and pitched rests can
1505 be used to override typesetting decisions.
1507 @lilypond[verbatim,raggedright]
1514 \once \override NoteColumn #'force-hshift = #1.7
1523 Program reference: the objects responsible for resolving collisions are
1524 @internalsref{NoteCollision} and @internalsref{RestCollision}.
1527 @inputfileref{input/regression,collision-dots.ly},
1528 @inputfileref{input/regression,collision-head-chords.ly},
1529 @inputfileref{input/regression,collision-heads.ly},
1530 @inputfileref{input/regression,collision-mesh.ly}, and
1531 @inputfileref{input/regression,collisions.ly}.
1537 When using @code{merge-differently-headed} with an upstem eighth or a
1538 shorter note, and a downstem half note, the eighth note gets the wrong
1541 There is no support for clusters where the same note occurs with
1542 different accidentals in the same chord. In this case, it is
1543 recommended to use enharmonic transcription, or to use special cluster
1544 notation (see @ref{Clusters}).
1549 Beams are used to group short notes into chunks that are aligned with
1550 the metrum. LilyPond normally inserts beams automatically, but if you
1551 wish you may control them manually or changed how beams are automatically
1554 @cindex Automatic beams
1558 * Setting automatic beam behavior::
1562 @node Automatic beams
1563 @subsection Automatic beams
1565 LilyPond inserts beams automatically
1567 @lilypond[quote,fragment,verbatim,relative=2]
1568 \time 2/4 c8 c c c \time 6/8 c c c c8. c16 c8
1571 When these automatic decisions are not good enough, beaming can be
1572 entered explicitly. It is also possible to define beaming patterns
1573 that differ from the defaults.
1575 Individual notes may be marked with @code{\noBeam}, to prevent them
1578 @lilypond[quote,fragment,verbatim,relative=2]
1579 \time 2/4 c8 c\noBeam c c
1585 Program reference: @internalsref{Beam}.
1589 @subsection Manual beams
1590 @cindex beams, manual
1594 In some cases it may be necessary to override the automatic beaming
1595 algorithm. For example, the autobeamer will not put beams over rests
1596 or bar lines. Such beams are specified manually by marking the begin
1597 and end point with @code{[} and @code{]}
1599 @lilypond[quote,fragment,relative=1,verbatim]
1601 r4 r8[ g' a r8] r8 g[ | a] r8
1605 @cindex @code{stemLeftBeamCount}
1607 Normally, beaming patterns within a beam are determined automatically.
1608 If necessary, the properties @code{stemLeftBeamCount} and
1609 @code{stemRightBeamCount} can be used to override the defaults. If
1610 either property is set, its value will be used only once, and then it
1613 @lilypond[quote,fragment,relative=1,verbatim]
1618 \set stemLeftBeamCount = #1
1622 @cindex @code{stemRightBeamCount}
1625 The property @code{subdivideBeams} can be set in order to subdivide
1626 all 16th or shorter beams at beat positions, as defined by the
1627 @code{beatLength} property.
1630 @lilypond[fragment,quote,relative=2,verbatim,noindent]
1632 \set subdivideBeams = ##t
1634 \set Score.beatLength = #(ly:make-moment 1 8)
1637 @cindex @code{subdivideBeams}
1639 Normally, line breaks are forbidden when beams cross bar lines. This
1640 behavior can be changed by setting @code{allowBeamBreak}.
1642 @cindex @code{allowBeamBreak}
1643 @cindex beams and line breaks
1645 @cindex beams, kneed
1647 @cindex auto-knee-gap
1652 User manual: @ref{Changing context properties on the fly} for the
1658 @cindex Frenched staves
1659 Kneed beams are inserted automatically, when a large gap is detected
1660 between the note heads. This behavior can be tuned through the object.
1663 Automatically kneed cross-staff beams cannot be used together with
1664 hidden staves. See @ref{Hiding staves}.
1666 Beams do not avoid collisions with symbols around the notes, such as
1667 texts and accidentals.
1672 @node Setting automatic beam behavior
1673 @subsection Setting automatic beam behavior
1675 @cindex @code{autoBeamSettings}
1676 @cindex @code{(end * * * *)}
1677 @cindex @code{(begin * * * *)}
1678 @cindex automatic beams, tuning
1679 @cindex tuning automatic beaming
1681 @c [TODO: use \applycontext]
1683 In normal time signatures, automatic beams can start on any note but can
1684 only end in a few positions within the measure: beams can end on a beat,
1685 or at durations specified by the properties in
1686 @code{autoBeamSettings}. The defaults for @code{autoBeamSettings}
1687 are defined in @file{scm/auto-beam.scm}.
1689 The value of @code{autoBeamSettings} is changed with two functions,
1691 #(override-auto-beam-setting
1692 '(@var{be} @var{p} @var{q} @var{n} @var{m}) @var{a} @var{b}
1694 #(revert-auto-beam-setting '(@var{be} @var{p} @var{q} @var{n} @var{m}))
1696 Here, @var{be} is the symbol @code{begin} or @code{end}, and
1697 @var{context} is an optional context (default: @code{'Voice}). It
1698 determines whether the rule applies to begin or end-points. The
1699 quantity @var{p}/@var{q} refers to the length of the beamed notes (and
1700 `@code{* *}' designates notes of any length), @var{n}/@var{M} refers
1701 to a time signature (wildcards `@code{* *}' may be entered to
1702 designate all time signatures), @var{a}/@var{b} is a duration. By
1703 default, this command changes settings for the current voice. It is
1704 also possible to adjust settings at higher contexts, by adding a
1705 @var{context} argument.
1707 For example, if automatic beams should end on every quarter note, use
1710 #(override-auto-beam-setting '(end * * * *) 1 4 'Staff)
1712 Since the duration of a quarter note is 1/4 of a whole note, it is
1713 entered as @code{(ly:make-moment 1 4)}.
1715 The same syntax can be used to specify beam starting points. In this
1716 example, automatic beams can only end on a dotted quarter note
1718 #(override-auto-beam-setting '(end * * * *) 3 8)
1720 In 4/4 time signature, this means that automatic beams could end only on
1721 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
1722 3/8, has passed within the measure).
1724 Rules can also be restricted to specific time signatures. A rule that
1725 should only be applied in @var{N}/@var{M} time signature is formed by
1726 replacing the second asterisks by @var{N} and @var{M}. For example, a
1727 rule for 6/8 time exclusively looks like
1729 #(override-auto-beam-setting '(begin * * 6 8) @dots{})
1732 If a rule should be to applied only to certain types of beams, use the
1733 first pair of asterisks. Beams are classified according to the
1734 shortest note they contain. For a beam ending rule that only applies
1735 to beams with 32nd notes (and no shorter notes), use @code{(end 1 32 *
1738 @cindex automatic beam generation
1740 @cindex @code{autoBeaming}
1743 If beams are used to indicate melismata in songs, then automatic
1744 beaming should be switched off. This is done by setting
1745 @code{autoBeaming} to @code{#f}.
1749 @cindex @code{\autoBeamOff}
1750 @code{\autoBeamOff},
1751 @cindex @code{\autoBeamOn}
1757 If a score ends while an automatic beam has not been ended and is
1758 still accepting notes, this last beam will not be typeset at all. The
1759 same holds polyphonic voices, entered with @code{<< @dots{} \\ @dots{}
1760 >>}. If a polyphonic voice ends while an automatic beam is still
1761 accepting notes, it is not typeset.
1763 The rules for ending a beam depend on the shortest note in a beam.
1764 So, while it is possible to have different ending rules for eight
1765 beams and sixteenth beams, a beam that contains both eight and
1766 sixteenth notes will use the rules for the sixteenth beam.
1768 In the example below, the autobeamer makes eighth beams and sixteenth
1769 end at three eighths. The third beam can only be corrected by
1770 specifying manual beaming.
1772 @lilypond[quote,raggedright,fragment,relative=1]
1773 #(override-auto-beam-setting '(end * * * *) 3 8)
1774 % rather show case where it goes wrong
1775 %\time 12/8 c'8 c c c16 c c c c c c[ c c c] c8[ c] c4
1776 \time 12/8 c'8 c c c16 c c c c c c c c c c8 c c4
1778 It is not possible to specify beaming parameters that act differently in
1779 different parts of a measure. This means that it is not possible to use
1780 automatic beaming in irregular meters such as @code{5/8}.
1782 @node Beam formatting
1783 @subsection Beam formatting
1786 When a beam falls in the middle of the staff, the beams point normally
1787 down. However, this behaviour can be altered with the
1788 @code{neutral-direction} property.
1791 @lilypond[quote,raggedright,relative=2,fragment,verbatim]
1794 \override Beam #'neutral-direction = #-1
1796 \override Beam #'neutral-direction = #1
1802 @section Accidentals
1804 This section describes how to change the way that accidentals are
1805 inserted automatically before notes.
1808 * Automatic accidentals::
1811 @node Automatic accidentals
1812 @subsection Automatic accidentals
1813 @cindex Automatic accidentals
1815 Common rules for typesetting accidents have been placed in a
1816 function. This function is called as follows
1818 @cindex @code{set-accidental-style}
1820 #(set-accidental-style 'STYLE #('CONTEXT#))
1823 The function can take two arguments: the name of the accidental style,
1824 and an optional argument that denotes the context which should be
1825 changed. If no context name is supplied, @code{Staff} is the default,
1826 but you may wish to apply the accidental style to a single @code{Voice}
1829 The following accidental styles are supported
1832 This is the default typesetting behavior. It corresponds
1833 to 18th century common practice: Accidentals are
1834 remembered to the end of the measure in which they occur and
1835 only on their own octave.
1838 The normal behavior is to remember the accidentals on
1839 Staff-level. This variable, however, typesets accidentals
1840 individually for each voice. Apart from that, the rule is similar to
1843 As a result, accidentals from one voice do not get canceled in other
1844 voices, which is often an unwanted result
1846 @lilypond[quote,raggedright,relative=1,fragment,verbatim]
1848 #(set-accidental-style 'voice)
1855 The @code{voice} option should be used if the voices
1856 are to be read solely by individual musicians. If the staff is to be
1857 used by one musician (e.g. a conductor) then
1858 @code{modern} or @code{modern-cautionary}
1859 should be used instead.
1862 @cindex @code{modern} style accidentals
1863 This rule corresponds to the common practice in the 20th century. This rule
1864 prints the same accidentals as @code{default}, but temporary
1865 accidentals also are canceled in other octaves. Furthermore,
1866 in the same octave, they also get canceled in the following
1869 @lilypond[quote,raggedright,fragment,verbatim]
1870 #(set-accidental-style 'modern)
1871 cis' c'' cis'2 | c'' c'
1874 @item @code{modern-cautionary}
1875 @cindex @code{modern-cautionary}
1876 This rule is similar to @code{modern}, but the ``extra'' accidentals
1877 (the ones not typeset by @code{default}) are typeset as cautionary
1878 accidentals. They are printed in reduced size or with parentheses
1879 @lilypond[quote,raggedright,fragment,verbatim]
1880 #(set-accidental-style 'modern-cautionary)
1881 cis' c'' cis'2 | c'' c'
1884 @cindex @code{modern-voice}
1886 This rule is used for multivoice accidentals to be read both by musicians
1887 playing one voice and musicians playing all voices. Accidentals are
1888 typeset for each voice, but they @emph{are} canceled across voices in
1889 the same @internalsref{Staff}.
1891 @cindex @code{modern-voice-cautionary}
1892 @item modern-voice-cautionary
1893 This rule is the same as @code{modern-voice}, but with the extra
1894 accidentals (the ones not typeset by @code{voice}) typeset
1895 as cautionaries. Even though all accidentals typeset by
1896 @code{default} @emph{are} typeset by this variable then
1897 some of them are typeset as cautionaries.
1900 @cindex @code{piano} accidentals
1901 This rule reflects 20th century practice for piano notation. Very similar to
1902 @code{modern} but accidentals also get canceled
1903 across the staves in the same @internalsref{GrandStaff} or
1904 @internalsref{PianoStaff}.
1906 @item piano-cautionary
1907 @cindex @code{#(set-accidental-style 'piano-cautionary)}
1908 As @code{#(set-accidental-style 'piano)} but with the extra accidentals
1909 typeset as cautionaries.
1912 @cindex @code{no-reset} accidental style
1913 This is the same as @code{default} but with accidentals lasting
1914 ``forever'' and not only until the next measure
1915 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1916 #(set-accidental-style 'no-reset)
1921 This is sort of the opposite of @code{no-reset}: Accidentals
1922 are not remembered at all---and hence all accidentals are
1923 typeset relative to the key signature, regardless of what was
1926 @lilypond[quote,raggedright,fragment,verbatim,relative=1]
1927 #(set-accidental-style 'forget)
1928 \key d\major c4 c cis cis d d dis dis
1935 Program reference: @internalsref{Accidental_engraver},
1936 @internalsref{Accidental}, and @internalsref{AccidentalPlacement}.
1941 Simultaneous notes are considered to be entered in sequential
1942 mode. This means that in a chord the accidentals are typeset as if the
1943 notes in the chord happened once at a time - in the order in which
1944 they appear in the input file.
1946 This is a problem when accidentals in a chord depend on each other,
1947 which does not happen for the default accidental style. The problem
1948 can be solved by manually inserting @code{!} and @code{?} for the
1952 @node Expressive marks
1953 @section Expressive marks
1956 @c todo: should change ordering
1957 @c where to put text spanners, metronome marks,
1960 Expressive marks help musicians to bring more to the music than simple
1970 * Analysis brackets::
1973 * Fingering instructions::
1983 A slur indicates that notes are to be played bound or @emph{legato}.
1985 They are entered using parentheses
1986 @lilypond[quote,relative=2,fragment,verbatim]
1987 f( g a) a8 b( a4 g2 f4)
1991 The direction of a slur can be set with the
1995 \override Slur #'direction = #UP
1996 \slurUp % shortcut for the previous line
2000 However, there is a convenient shorthand for forcing slur
2001 directions. By adding @code{_} or @code{^} before the opening
2002 parentheses, the direction is also set. For example,
2004 @lilypond[relative=2,verbatim,fragment]
2008 Some composers write two slurs when they want legato chords. This can
2009 be achieved in LilyPond by setting @code{doubleSlurs},
2011 @lilypond[verbatim,raggedright]
2013 \set doubleSlurs = ##t
2014 <c e>4 ( <d f> <c e> <d f> )
2022 @cindex @code{\slurUp}
2024 @cindex @code{\slurDown}
2026 @cindex @code{\slurNeutral}
2027 @code{\slurNeutral},
2028 @cindex @code{\slurDotted}
2030 @cindex @code{\slurSolid}
2035 Program reference: @seeinternals{Slur}, and @internalsref{SlurEvent}.
2038 @node Phrasing slurs
2039 @subsection Phrasing slurs
2041 @cindex phrasing slurs
2042 @cindex phrasing marks
2044 A phrasing slur (or phrasing mark) connects chords and is used to
2045 indicate a musical sentence. It is written using @code{\(} and @code{\)}
2048 @lilypond[quote,fragment,verbatim,relative=1]
2049 \time 6/4 c'\( d( e) f( e) d\)
2052 Typographically, the phrasing slur behaves almost exactly like a
2053 normal slur. However, they are treated as different objects. A
2054 @code{\slurUp} will have no effect on a phrasing slur; instead, use
2055 @code{\phrasingSlurUp}, @code{\phrasingSlurDown}, and
2056 @code{\phrasingSlurNeutral}.
2058 The commands @code{\slurUp}, @code{\slurDown}, and @code{\slurNeutral}
2059 will only affect normal slurs and not phrasing slurs.
2063 @cindex @code{\phrasingSlurUp}
2064 @code{\phrasingSlurUp},
2065 @cindex @code{\phrasingSlurDown}
2066 @code{\phrasingSlurDown},
2067 @cindex @code{\phrasingSlurNeutral}
2068 @code{\phrasingSlurNeutral}.
2072 Program reference: see also @internalsref{PhrasingSlur}, and
2073 @internalsref{PhrasingSlurEvent}.
2077 Putting phrasing slurs over rests leads to spurious warnings.
2080 @subsection Breath marks
2082 Breath marks are entered using @code{\breathe}
2085 @lilypond[quote,fragment,relative=1,verbatim]
2089 The glyph of the breath mark can be tuned by overriding the
2090 @code{text} property of the @code{BreathingSign} layout object with
2091 any markup text. For example,
2092 @lilypond[quote,fragment,verbatim,relative=1]
2094 \override BreathingSign #'text
2095 = #(make-musicglyph-markup "scripts-rvarcomma")
2102 Program reference: @internalsref{BreathingSign},
2103 @internalsref{BreathingSignEvent}.
2105 Examples: @inputfileref{input/regression,breathing-sign.ly}.
2108 @node Metronome marks
2109 @subsection Metronome marks
2112 @cindex beats per minute
2113 @cindex metronome marking
2115 Metronome settings can be entered as follows
2117 \tempo @var{duration} = @var{per-minute}
2120 In the MIDI output, they are interpreted as a tempo change. In the
2121 paper output, a metronome marking is printed
2122 @cindex @code{\tempo}
2123 @lilypond[quote,verbatim,fragment]
2129 Program reference: @internalsref{MetronomeChangeEvent}.
2133 @subsection Text scripts
2134 @cindex Text scripts
2136 @cindex text items, non-empty
2137 @cindex non-empty texts
2139 It is possible to place arbitrary strings of text or markup text (see
2140 @ref{Text markup}) above or below notes by using a string
2141 @code{c^"text"}. By default, these indications do not influence the
2142 note spacing, but by using the command @code{\fatText}, the widths
2143 will be taken into account
2145 @lilypond[quote,fragment,raggedright,verbatim,relative=1]
2146 c4^"longtext" \fatText c4_"longlongtext" c4
2149 More complex formatting may also be added to a note by using the
2151 @lilypond[fragment,raggedright,verbatim]
2152 c'4^\markup { bla \bold bla }
2155 The @code{\markup} is described in more detail in
2161 @cindex @code{\fatText}
2163 @cindex @code{\emptyText}
2168 In this manual: @ref{Text markup}.
2170 Program reference: @internalsref{TextScriptEvent}, @internalsref{TextScript}.
2174 @subsection Text spanners
2175 @cindex Text spanners
2177 Some performance indications, e.g. @i{rallentando} or @i{accelerando},
2178 are written as text and are extended over many measures with dotted
2179 lines. Such texts are created using text spanners; attach
2180 @code{\startTextSpan} and @code{\stopTextSpan} to the first and last
2181 notes of the spanner.
2183 The string to be printed, as well as the style, is set through object
2186 @lilypond[quote,fragment,relative=1,verbatim]
2188 \override TextSpanner #'direction = #-1
2189 \override TextSpanner #'edge-text = #'("rall " . "")
2190 c2\startTextSpan b c\stopTextSpan a
2196 Internals @internalsref{TextSpanEvent},
2197 @internalsref{TextSpanner}.
2199 Examples: @inputfileref{input/regression,text-spanner.ly}.
2202 @node Analysis brackets
2203 @subsection Analysis brackets
2205 @cindex phrasing brackets
2206 @cindex musicological analysis
2207 @cindex note grouping bracket
2209 Brackets are used in musical analysis to indicate structure in musical
2210 pieces. LilyPond supports a simple form of nested horizontal
2211 brackets. To use this, add the @internalsref{Horizontal_bracket_engraver}
2212 to @internalsref{Staff} context. A bracket is started with
2213 @code{\startGroup} and closed with @code{\stopGroup}
2215 @lilypond[quote,raggedright,verbatim]
2218 c4\startGroup\startGroup
2221 c4\stopGroup\stopGroup
2225 \Staff \consists "Horizontal_bracket_engraver"
2231 Program reference: @internalsref{HorizontalBracket},
2232 @internalsref{NoteGroupingEvent}.
2234 Examples: @inputfileref{input/regression,note-group-bracket.ly}.
2238 @subsection Articulations
2239 @cindex Articulations
2241 @cindex articulations
2245 A variety of symbols can appear above and below notes to indicate
2246 different characteristics of the performance. They are added to a note
2247 by adding a dash and the character signifying the
2248 articulation. They are demonstrated here
2250 @lilypondfile[quote,raggedright]{script-abbreviations.ly}
2252 The meanings of these shorthands can be changed. See
2253 @file{ly/script-init.ly} for examples.
2256 The script is automatically placed, but the direction can be forced as
2257 well. Like other pieces of LilyPond code, @code{_} will place them
2258 below the staff, and @code{^} will place them above.
2261 @lilypond[quote,fragment,verbatim]
2265 Other symbols can be added using the syntax
2266 @var{note}@code{\}@var{name}. Again, they
2267 can be forced up or down using @code{^} and @code{_},
2270 @lilypond[quote,verbatim,fragment,relative=2]
2271 c\fermata c^\fermata c_\fermata
2278 @cindex staccatissimo
2287 @cindex organ pedal marks
2296 @cindex prallmordent
2300 @cindex thumb marking
2305 Here is a chart showing all scripts available,
2307 @lilypondfile[quote]{script-chart.ly}
2310 The vertical ordering of scripts is controlled with the
2311 @code{script-priority} property. The lower this number, the closer it
2312 will be put to the note. In this example, the
2313 @internalsref{TextScript} (the sharp symbol) first has the lowest
2314 priority, so it is put lowest in the first example. In the second, the
2315 prall trill (the @internalsref{Script}) has the lowest, so it on the
2316 inside. When two objects have the same priority, the order in which
2317 they are entered decides which one comes first.
2320 @lilypond[verbatim,relative=3,raggedright,fragment,quote]
2321 \once \override TextScript #'script-priority = #-100
2322 a4^\prall^\markup { \sharp }
2324 \once \override Script #'script-priority = #-100
2325 a4^\prall^\markup { \sharp }
2333 Program reference: @internalsref{ScriptEvent}, and @internalsref{Script}.
2337 These signs appear in the printed output but have no effect on the
2338 MIDI rendering of the music.
2342 @node Running trills
2343 @subsection Running trills
2345 Long running trills are made with @code{\startTrillSpan} and
2346 @code{\stopTrillSpan},
2349 @lilypond[verbatim,raggedright,relative=2,quote,fragment]
2351 << { c1 \startTrillSpan }
2352 { s2. \grace { d16[\stopTrillSpan e] } } >>
2358 @code{\startTrillSpan},
2359 @cindex @code{\startTrillSpan}
2360 @code{\stopTrillSpan}.
2361 @cindex @code{\stopTrillSpan}
2365 Program reference: @internalsref{TrillSpanner},
2366 @internalsref{TrillSpanEvent}.
2368 @node Fingering instructions
2369 @subsection Fingering instructions
2373 Fingering instructions can be entered using
2375 @var{note}-@var{digit}
2377 For finger changes, use markup texts
2379 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2381 c^\markup { \finger "2-3" }
2384 @cindex finger change
2389 You can use the thumb-script to indicate that a note should be
2390 played with the thumb (e.g. in cello music)
2392 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2393 <a_\thumb a'-3>8 <b_\thumb b'-3>
2396 Fingerings for chords can also be added to individual notes
2397 of the chord by adding them after the pitches
2398 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2399 < c-1 e-2 g-3 b-5 >4
2403 In this case, setting @code{fingeringOrientations} will put fingerings next
2406 @lilypond[quote,verbatim,raggedright,fragment,relative=1]
2407 \set fingeringOrientations = #'(left down)
2408 <c-1 es-2 g-4 bes-5 > 4
2409 \set fingeringOrientations = #'(up right down)
2410 <c-1 es-2 g-4 bes-5 > 4
2413 Using this feature, it is also possible to put fingering instructions
2414 very close to note heads in monophonic music,
2416 @lilypond[verbatim,raggedright]
2418 \set fingeringOrientations = #'(right)
2426 Program reference: @internalsref{FingerEvent}, and @internalsref{Fingering}.
2428 Examples: @inputfileref{input/regression,finger-chords.ly}.
2434 @subsection Grace notes
2437 @c should have blurb about accaciatura / appogiatura
2439 @cindex @code{\grace}
2443 Grace notes are ornaments that are written out. The most common ones
2444 are acciaccatura, which should be played as very short. It is denoted
2445 by a slurred small note with a slashed stem. The appoggiatura is a
2446 grace note that takes a fixed fraction of the main note, and is
2447 denoted as a slurred note in small print without a slash. They
2448 are entered with the commands @code{\acciaccatura} and
2449 @code{\appoggiatura}, as demonstrated in the following example
2452 @cindex appoggiatura
2453 @cindex acciaccatura
2455 @lilypond[quote,relative=2,verbatim,fragment]
2456 b4 \acciaccatura d8 c4 \appoggiatura e8 d4
2457 \acciaccatura { g16[ f] } e4
2460 Both are special forms of the @code{\grace} command. By prefixing this
2461 keyword to a music expression, a new one is formed, which will be
2462 printed in a smaller font and takes up no logical time in a measure.
2464 @lilypond[quote,relative=2,verbatim,fragment]
2466 \grace { c16[ d16] } c2 c4
2470 Unlike @code{\acciaccatura} and @code{\appoggiatura}, the
2471 @code{\grace} command does not start a slur.
2473 Internally, timing for grace notes is done using a second, `grace'
2474 time. Every point in time consists of two rational numbers: one
2475 denotes the logical time, one denotes the grace timing. The above
2476 example is shown here with timing tuples
2478 @lilypond[quote,raggedright]
2481 c4 \grace c16 c4 \grace {
2484 \new Lyrics \lyricmode {
2485 \override LyricText #'font-family = #'typewriter
2489 ( \fraction 1 4 , \fraction -1 16 ) } 16 }
2490 \markup { (\fraction 1 4 , 0 ) } 4
2492 \markup { (\fraction 2 4 , \fraction "-1" 8 ) } 16
2493 \markup { (\fraction 2 4 , \fraction "-1" 16 ) } 16
2495 \markup { ( \fraction 2 4 , 0 ) }
2501 The placement of grace notes is synchronized between different staves.
2502 In the following example, there are two sixteenth graces notes for
2503 every eighth grace note
2505 @lilypond[quote,relative=2,verbatim,fragment]
2506 << \new Staff { e4 \grace { c16[ d e f] } e4 }
2507 \new Staff { c4 \grace { g8[ b] } c4 } >>
2512 If you want to end a note with a grace, the standard trick is to put
2513 the grace notes after a ``space note''
2515 @lilypond[quote,fragment,verbatim,relative=2]
2518 { s2 \grace { c16[ d] } } >>
2524 By adjusting the duration of the skip note (here it is a half-note),
2525 the space between the main-note and the grace is adjusted.
2528 A @code{\grace} section will introduce special typesetting settings,
2529 for example, to produce smaller type, and set directions. Hence, when
2530 introducing layout tweaks, they should be inside the grace section,
2532 @lilypond[quote,fragment,verbatim,relative=2]
2544 The overrides should also be reverted inside the grace section.
2546 The layout of grace sections can be changed throughout the music using
2547 the function @code{add-grace-property}. The following example
2548 undefines the Stem direction for this grace, so stems do not always
2553 #(add-grace-property 'Voice 'Stem 'direction '())
2559 Another option is to change the variables @code{startGraceMusic},
2560 @code{stopGraceMusic}, @code{startAcciaccaturaMusic},
2561 @code{stopAcciaccaturaMusic}, @code{startAppoggiaturaMusic},
2562 @code{stopAppoggiaturaMusic}. More information is in the file
2563 @file{ly/grace-init.ly}.
2568 Program reference: @internalsref{GraceMusic}.
2572 A score that starts with a @code{\grace} section needs an explicit
2573 @code{\context Voice} declaration, otherwise the main note and grace
2574 note end up on different staves.
2576 Grace note synchronization can also lead to surprises. Staff notation,
2577 such as key signatures, bar lines, etc. are also synchronized. Take
2578 care when you mix staves with grace notes and staves without, for example,
2580 @lilypond[quote,relative=2,verbatim,fragment]
2581 << \new Staff { e4 \bar "|:" \grace c16 d4 }
2582 \new Staff { c4 \bar "|:" d4 } >>
2586 This can be remedied by inserting grace skips, for the above example
2589 \new Staff @{ c4 \bar "|:" \grace s16 d4 @}
2592 Grace sections should only be used within sequential music
2593 expressions. Nesting or juxtaposing grace sections is not supported,
2594 and might produce crashes or other errors.
2598 @subsection Glissando
2601 @cindex @code{\glissando}
2603 A glissando is a smooth change in pitch. It is denoted by a line or a
2604 wavy line between two notes. It is requested by attaching
2605 @code{\glissando} to a note
2607 @lilypond[quote,fragment,relative=2,verbatim]
2613 Program reference: @internalsref{Glissando}, and @internalsref{GlissandoEvent}.
2615 Example files: @file{input/regression/glissando.ly}.
2621 Printing text over the line (such as @emph{gliss.}) is not supported.
2625 @subsection Dynamics
2638 @cindex @code{\ffff}
2648 Absolute dynamic marks are specified using a command after a note
2649 @code{c4\ff}. The available dynamic marks are @code{\ppp},
2650 @code{\pp}, @code{\p}, @code{\mp}, @code{\mf}, @code{\f}, @code{\ff},
2651 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
2652 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}
2654 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
2655 c\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
2656 c2\fp c\sf c\sff c\sp c\spp c\sfz c\rfz
2665 A crescendo mark is started with @code{\<} and terminated with
2666 @code{\!}. A decrescendo is started with @code{\>} and also terminated
2667 with @code{\!}. Because these marks are bound to notes, if you must
2668 use spacer notes if multiple marks are needed during one note
2670 @lilypond[quote,fragment,verbatim,relative=2]
2672 << f1 { s4 s4\< s4\! \> s4\! } >>
2674 This may give rise to very short hairpins. Use @code{minimum-length}
2675 in @internalsref{Voice}.@internalsref{Hairpin} to lengthen them, for
2679 \override Staff.Hairpin #'minimum-length = #5
2682 You can also use a text saying @emph{cresc.} instead of hairpins. Here
2683 is an example how to do it
2685 @lilypond[quote,fragment,relative=2,verbatim]
2695 You can also supply your own texts
2696 @lilypond[quote,fragment,relative=1,verbatim]
2697 \set crescendoText = \markup { \italic "cresc. poco" }
2698 \set crescendoSpanner = #'dashed-line
2707 @cindex @code{\dynamicUp}
2709 @cindex @code{\dynamicDown}
2710 @code{\dynamicDown},
2711 @cindex @code{\dynamicNeutral}
2712 @code{\dynamicNeutral}.
2714 @cindex direction, of dynamics
2718 Program reference: @internalsref{CrescendoEvent},
2719 @internalsref{DecrescendoEvent}, and
2720 @internalsref{AbsoluteDynamicEvent}.
2722 Dynamics are @internalsref{DynamicText} and @internalsref{Hairpin}
2723 objects. Vertical positioning of these symbols is handled by the
2724 @internalsref{DynamicLineSpanner} object.
2730 Repetition is a central concept in music, and multiple notations exist
2736 * Repeats and MIDI::
2737 * Manual repeat commands::
2739 * Tremolo subdivisions::
2744 @subsection Repeat types
2747 @cindex @code{\repeat}
2749 The following types of repetition are supported
2753 Repeated music is fully written (played) out. This is useful when
2754 entering repetitious music. This is the only kind of repeat that
2755 is included in MIDI output.
2758 Repeats are not written out, but alternative endings (volte) are
2759 printed, left to right with brackets. This is the standard notation
2760 for repeats with alternatives. These are not played in MIDI output by default.
2764 Alternative endings are written stacked. This has limited use but may be
2765 used to typeset two lines of lyrics in songs with repeats, see
2766 @inputfileref{input,star-spangled-banner.ly}.
2771 Make tremolo beams. These are not played in MIDI output by default.
2774 Make beat or measure repeats. These look like percent signs. These are not played
2775 in MIDI output by default.
2780 @subsection Repeat syntax
2783 LilyPond has one syntactic construct for specifying different types of
2784 repeats. The syntax is
2787 \repeat @var{variant} @var{repeatcount} @var{repeatbody}
2790 If you have alternative endings, you may add
2791 @cindex @code{\alternative}
2793 \alternative @code{@{} @var{alternative1}
2795 @var{alternative3} @dots{} @code{@}}
2797 where each @var{alternative} is a music expression. If you do not
2798 give enough alternatives for all of the repeats, the first alternative
2799 is assumed to be played more than once.
2801 Standard repeats are used like this
2802 @lilypond[quote,fragment,verbatim,relative=2]
2804 \repeat volta 2 { c4 d e f }
2805 \repeat volta 2 { f e d c }
2808 With alternative endings
2809 @lilypond[quote,fragment,verbatim,relative=2]
2811 \repeat volta 2 {c4 d e f}
2812 \alternative { {d2 d} {f f,} }
2816 @lilypond[quote,fragment,verbatim,relative=2]
2819 \repeat volta 4 { e | c2 d2 | e2 f2 | }
2820 \alternative { { g4 g g } { a | a a a a | b2. } }
2824 It is possible to shorten volta brackets
2825 by setting @code{voltaSpannerDuration}. In the next example, the
2826 bracket only lasts one measure, which is a duration of 3/4.
2830 @lilypond[verbatim,raggedright]
2834 \set Staff.voltaSpannerDuration = #(ly:make-moment 3 4)
2835 \repeat "volta" 5 { d d d }
2836 \alternative { { e e e f f f }
2846 Brackets for the repeat are normally only printed over the topmost
2847 staff. This can be adjusted by setting the @code{voltaOnThisStaff}
2848 property @inputfileref{input/regression,volta-multi-staff.ly},
2849 @inputfileref{input/regression,volta-chord-names.ly}
2854 A nested repeat like
2863 is ambiguous, since it is is not clear to which @code{\repeat} the
2864 @code{\alternative} belongs. This ambiguity is resolved by always
2865 having the @code{\alternative} belong to the inner @code{\repeat}.
2866 For clarity, it is advisable to use braces in such situations.
2871 Timing information is not remembered at the start of an alternative,
2872 so after a repeat timing information must be reset by hand, for
2873 example by setting @code{Score.measurePosition} or entering
2874 @code{\partial}. Similarly, slurs or ties are also not repeated.
2879 @node Repeats and MIDI
2880 @subsection Repeats and MIDI
2882 @cindex expanding repeats
2884 With a little bit of tweaking, all types of repeats can be present
2885 in the MIDI output. This is achieved by applying the
2886 @code{\unfoldrepeats} music function. This functions changes all
2887 repeats to unfold repeats.
2889 @lilypond[verbatim,raggedright,fragment]
2891 \repeat tremolo 8 {c'32 e' }
2892 \repeat percent 2 { c''8 d'' }
2893 \repeat volta 2 {c'4 d' e' f'}
2902 When creating a score file using @code{\unfoldrepeats} for midi, then
2903 it is necessary to make two @code{\score} blocks. One for MIDI (with
2904 unfolded repeats) and one for notation (with volta, tremolo, and
2905 percent repeats). For example,
2913 \unfoldrepeats @var{..music..}
2918 @node Manual repeat commands
2919 @subsection Manual repeat commands
2921 @cindex @code{repeatCommands}
2923 The property @code{repeatCommands} can be used to control the layout of
2924 repeats. Its value is a Scheme list of repeat commands, where each repeat
2928 @item @code{start-repeat},
2929 which prints a @code{|:} bar line;
2930 @item @code{end-repeat},
2931 which prints a @code{:|} bar line;
2932 @item @code{(volta @var{text})},
2933 which prints a volta bracket saying @var{text}: The text can be specified as
2934 a text string or as a markup text, see @ref{Text markup}. Do not
2935 forget to change the font, as the default number font does not contain
2936 alphabetic characters;
2937 @item @code{(volta #f)}, which
2938 stops a running volta bracket.
2941 @lilypond[quote,verbatim,fragment,relative=2]
2943 \set Score.repeatCommands = #'((volta "93") end-repeat)
2945 \set Score.repeatCommands = #'((volta #f))
2953 Program reference: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
2954 @internalsref{VoltaRepeatedMusic},
2955 @internalsref{UnfoldedRepeatedMusic}, and
2956 @internalsref{FoldedRepeatedMusic}.
2958 @node Tremolo repeats
2959 @subsection Tremolo repeats
2960 @cindex tremolo beams
2962 To place tremolo marks between notes, use @code{\repeat} with tremolo
2964 @lilypond[quote,verbatim,raggedright]
2965 \new Voice \relative c' {
2966 \repeat "tremolo" 8 { c16 d16 }
2967 \repeat "tremolo" 4 { c16 d16 }
2968 \repeat "tremolo" 2 { c16 d16 }
2972 Tremolo marks can also be put on a single note. In this case, the
2973 note should not be surrounded by braces.
2974 @lilypond[quote,verbatim,raggedright]
2975 \repeat "tremolo" 4 c'16
2978 Similar output is obtained using the tremolo subdivision, described in
2979 @ref{Tremolo subdivisions}.
2983 In this manual: @ref{Tremolo subdivisions}, @ref{Repeats}.
2985 Program reference: tremolo beams are @internalsref{Beam} objects. Single stem
2986 tremolos are @internalsref{StemTremolo} objects. The music expression is
2987 @internalsref{TremoloEvent}.
2989 Example files: @inputfileref{input/regression,chord-tremolo.ly},
2990 @inputfileref{input/regression,stem-tremolo.ly}.
2992 @node Tremolo subdivisions
2993 @subsection Tremolo subdivisions
2994 @cindex tremolo marks
2995 @cindex @code{tremoloFlags}
2997 Tremolo marks can be printed on a single note by adding
2998 `@code{:}[@var{number}]' after the note. The number indicates the
2999 duration of the subdivision, and it must be at least 8. A
3000 @var{length} value of 8 gives one line across the note stem. If the
3001 length is omitted, the last value (stored in @code{tremoloFlags}) is
3004 @lilypond[quote,verbatim,fragment]
3005 c'2:8 c':32 | c': c': |
3008 @c [TODO : stok is te kort bij 32en]
3009 @c somebody want to translate that into English? :)
3013 Tremolos entered in this way do not carry over into the MIDI output.
3017 In this manual: @ref{Tremolo repeats}.
3019 Elsewhere: @internalsref{StemTremolo}, @internalsref{TremoloEvent}.
3021 @node Measure repeats
3022 @subsection Measure repeats
3024 @cindex percent repeats
3025 @cindex measure repeats
3027 In the @code{percent} style, a note pattern can be repeated. It is
3028 printed once, and then the pattern is replaced with a special sign.
3029 Patterns of one and two measures are replaced by percent-like signs,
3030 patterns that divide the measure length are replaced by slashes
3032 @lilypond[quote,verbatim,raggedright]
3033 \new Voice \relative c' {
3034 \repeat "percent" 4 { c4 }
3035 \repeat "percent" 2 { c2 es2 f4 fis4 g4 c4 }
3041 Program reference: @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
3042 @internalsref{PercentRepeatedMusic}, and
3043 @internalsref{DoublePercentRepeat}.
3047 @node Rhythmic music
3048 @section Rhythmic music
3052 * Showing melody rhythms::
3053 * Entering percussion::
3054 * Percussion staves::
3058 @node Showing melody rhythms
3059 @subsection Showing melody rhythms
3061 Sometimes you might want to show only the rhythm of a melody. This
3062 can be done with the rhythmic staff. All pitches of notes on such a
3063 staff are squashed, and the staff itself has a single line
3065 @lilypond[quote,fragment,relative=1,verbatim]
3066 \context RhythmicStaff {
3068 c4 e8 f g2 | r4 g r2 | g1:32 | r1 |
3074 Program reference: @internalsref{RhythmicStaff}.
3076 Examples: @inputfileref{input/regression,rhythmic-staff.ly}.
3079 @node Entering percussion
3080 @subsection Entering percussion
3086 Percussion notes may be entered in @code{\drummode} mode, which is
3087 similar to the standard mode for entering notes. Each piece of
3088 percussion has a full name and an abbreviated name, and both can be used
3091 @lilypond[quote,raggedright,verbatim]
3093 hihat hh bassdrum bd
3097 The complete list of drum names is in the init file
3098 @file{ly/drumpitch-init.ly}.
3099 @c TODO: properly document this.
3103 Program reference: @internalsref{DrumNoteEvent}.
3105 @node Percussion staves
3106 @subsection Percussion staves
3110 A percussion part for more than one instrument typically uses a
3111 multi line staff where each position in the staff refers to one piece
3115 To typeset the music, the notes must be interpreted in a
3116 @internalsref{DrumStaff} and @internalsref{DrumVoice} contexts
3119 @lilypond[quote,raggedright,verbatim]
3120 up = \drummode { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
3121 down = \drummode { bassdrum4 snare8 bd r bd sn4 }
3123 \new DrumVoice { \voiceOne \up }
3124 \new DrumVoice { \voiceTwo \down }
3128 The above example shows verbose polyphonic notation. The short
3129 polyphonic notation, described in @ref{Polyphony}, can also be used if
3130 the @internalsref{DrumVoices} are instantiated by hand first. For example,
3132 @lilypond[quote,fragment,verbatim]
3134 \context DrumVoice = "1" { s1 *2 }
3135 \context DrumVoice = "2" { s1 *2 }
3139 { \repeat unfold 16 hh16 }
3148 There are also other layout possibilities. To use these, set the
3149 property @code{drumStyleTable} in context @internalsref{DrumVoice}.
3150 The following variables have been predefined
3154 This is the default. It typesets a typical drum kit on a five-line staff
3156 @lilypond[quote,noindent]
3157 nam = \lyricmode { cymc cyms cymr hh hhc hho hhho hhp cb hc
3158 bd sn ss tomh tommh tomml toml tomfh tomfl }
3159 mus = \drummode { cymc cyms cymr hh | hhc hho hhho hhp | \break cb hc
3160 bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
3162 << \new DrumStaff\with {
3163 \remove Bar_engraver
3164 \remove Time_signature_engraver
3165 \override Stem #'transparent = ##t
3166 \override Stem #'Y-extent-callback = ##f
3167 minimumVerticalExtent = #'(-4.0 . 5.0)
3169 \context Lyrics \nam
3172 %% need to do this, because of indented @itemize
3175 \override LyricText #'font-family = #'typewriter
3176 \override BarNumber #'transparent =##T
3180 The drum scheme supports six different toms. When there fewer toms, simply
3181 select the toms that produce the desired result, i.e. to get toms on
3182 the three middle lines you use @code{tommh}, @code{tomml} and
3185 @item timbales-style
3186 This typesets timbales on a two line staff
3188 @lilypond[quote,raggedright]
3189 nam = \lyricmode { timh ssh timl ssl cb }
3190 mus = \drummode { timh ssh timl ssl cb s16 }
3193 \context DrumStaff \with {
3194 \remove Bar_engraver
3195 \remove Time_signature_engraver
3196 \override Stem #'transparent = ##t
3197 \override Stem #'Y-extent-callback = ##f
3198 \override StaffSymbol #'line-count = #2
3199 \override StaffSymbol #'staff-space = #2
3200 minimumVerticalExtent = #'(-3.0 . 4.0)
3201 drumStyleTable = #timbales-style
3204 \override LyricText #'font-family = #'typewriter
3210 This typesets congas on a two line staff
3212 @lilypond[quote,raggedright]
3213 nam = \lyricmode { cgh cgho cghm ssh cgl cglo cglm ssl }
3214 mus = \drummode { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
3216 \context DrumStaff\with {
3217 \remove Bar_engraver
3218 \remove Time_signature_engraver
3219 drumStyleTable = #congas-style
3220 \override StaffSymbol #'line-count = #2
3222 %% this sucks; it will lengthen stems.
3223 \override StaffSymbol #'staff-space = #2
3224 \override Stem #'transparent = ##t
3225 \override Stem #'Y-extent-callback = ##f
3228 \override LyricText #'font-family = #'typewriter
3233 This typesets bongos on a two line staff
3235 @lilypond[quote,raggedright]
3236 nam = \lyricmode { boh boho bohm ssh bol bolo bolm ssl }
3237 mus = \drummode { boh boho bohm ssh bol bolo bolm ssl s16 }
3239 \context DrumStaff\with {
3240 \remove Bar_engraver
3241 \remove Time_signature_engraver
3242 \override StaffSymbol #'line-count = #2
3243 drumStyleTable = #bongos-style
3245 %% this sucks; it will lengthen stems.
3246 \override StaffSymbol #'staff-space = #2
3247 \override Stem #'transparent = ##t
3248 \override Stem #'Y-extent-callback = ##f
3251 \override LyricText #'font-family = #'typewriter
3256 @item percussion-style
3257 to typeset all kinds of simple percussion on one line staves
3258 @lilypond[quote,raggedright]
3259 nam = \lyricmode { tri trio trim gui guis guil cb cl tamb cab mar hc }
3260 mus = \drummode { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
3262 \context DrumStaff\with{
3263 \remove Bar_engraver
3264 drumStyleTable = #percussion-style
3265 \override StaffSymbol #'line-count = #1
3266 \remove Time_signature_engraver
3267 \override Stem #'transparent = ##t
3268 \override Stem #'Y-extent-callback = ##f
3271 \override LyricText #'font-family = #'typewriter
3278 If you do not like any of the predefined lists you can define your own
3279 list at the top of your file
3281 @lilypond[quote,raggedright,verbatim]
3283 (bassdrum default #f -1)
3284 (snare default #f 0)
3286 (pedalhihat xcircle "stopped" 2)
3287 (lowtom diamond #f 3)))
3288 up = \drummode { hh8 hh hh hh hhp4 hhp }
3289 down = \drummode { bd4 sn bd toml8 toml }
3292 \set DrumStaff.drumStyleTable
3293 = #(alist->hash-table mydrums)
3294 \new DrumVoice { \voiceOne \up }
3295 \new DrumVoice { \voiceTwo \down }
3302 Init files: @file{ly/drumpitch-init.ly}.
3304 Program reference: @internalsref{DrumStaff}, @internalsref{DrumVoice}.
3308 Because general MIDI does not contain rim shots, the sidestick is used
3309 for this purpose instead.
3312 @section Piano music
3314 Piano staves are two normal staves coupled with a brace. The staves
3315 are largely independent, but sometimes voices can cross between the
3316 two staves. The same notation is also used for harps and other key
3317 instruments. The @internalsref{PianoStaff} is especially built to
3318 handle this cross-staffing behavior. In this section we discuss the
3319 @internalsref{PianoStaff} and some other pianistic peculiarities.
3323 * Automatic staff changes::
3324 * Manual staff switches::
3327 * Staff switch lines::
3328 * Cross staff stems::
3333 Dynamics are not centered, but workarounds do exist. See
3334 @inputfileref{input/template,piano-dynamics.ly}.
3336 @cindex cross staff stem
3337 @cindex stem, cross staff
3338 @cindex distance between staves in piano music
3340 The distance between the two staves is the same for all systems in the
3341 score. It is possible to override this per system, but it does require
3342 an arcane command incantation. See
3343 @inputfileref{input/test,piano-staff-distance.ly}.
3346 @node Automatic staff changes
3347 @subsection Automatic staff changes
3348 @cindex Automatic staff changes
3350 Voices can be made to switch automatically between the top and the bottom
3351 staff. The syntax for this is
3355 \autochange @dots{}@var{music}@dots{}
3360 This will create two staves inside the current PianoStaff, called
3361 @code{up} and @code{down}. The lower staff will be in bass clef by
3364 A @code{\relative} section that is outside of @code{\autochange} has
3365 no effect on the pitches of @var{music}, so, if necessary, put
3366 @code{\relative} inside @code{\autochange} like
3370 \autochange \relative @dots{} @dots{}
3375 The autochanger switches on basis of pitch (middle C is the turning
3376 point), and it looks ahead skipping over rests to switch in
3377 advance. Here is a practical example
3379 @lilypond[quote,verbatim,raggedright]
3381 \autochange \relative c'
3390 In this manual: @ref{Manual staff switches}.
3392 Program reference: @internalsref{AutoChangeMusic}.
3398 The staff switches may not end up in optimal places. For high
3399 quality output, staff switches should be specified manually.
3402 @code{\autochange} cannot be inside @code{\times}.
3404 Internally, the @code{\partcombine} interprets both arguments as
3405 @code{Voice}s named @code{one} and @code{two}, and then decides when
3406 the parts can be combined. Consequently, if the arguments switch to
3407 differently named @internalsref{Voice} contexts, the events in those
3411 @node Manual staff switches
3412 @subsection Manual staff switches
3414 @cindex manual staff switches
3415 @cindex staff switch, manual
3417 Voices can be switched between staves manually, using the command
3419 \change Staff = @var{staffname} @var{music}
3423 The string @var{staffname} is the name of the staff. It switches the
3424 current voice from its current staff to the Staff called
3425 @var{staffname}. Typically @var{staffname} is @code{"up"} or
3426 @code{"down"}. The @context{Staff} referred to must already exist, so
3427 usually the setup for a score will start with a setup of the staves,
3431 \context Staff = up @{
3432 \skip 1 * 10 %@emph{ keep staff alive}
3434 \context Staff = down @{
3435 \skip 1 * 10 %@emph{idem}
3441 and the @context{Voice} is inserted afterwards
3444 \context Staff = down
3445 \new Voice @{ @dots{} \change Staff = up @dots{} @}
3453 Pianos have pedals that alter the way sound is produced. Generally, a
3454 piano has three pedals, sustain, una corda, and sostenuto.
3457 Piano pedal instruction can be expressed by attaching
3458 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
3459 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
3462 @lilypond[quote,fragment,verbatim]
3463 c'4\sustainDown c'4\sustainUp
3466 What is printed can be modified by setting @code{pedal@var{X}Strings},
3467 where @var{X} is one of the pedal types: @code{Sustain},
3468 @code{Sostenuto} or @code{UnaCorda}. Refer to
3469 @internalsref{SustainPedal} in the program reference for more
3472 Pedals can also be indicated by a sequence of brackets, by setting the
3473 @code{pedalSustainStyle} property to bracket objects
3475 @lilypond[quote,fragment,verbatim,relative=2]
3476 \set Staff.pedalSustainStyle = #'bracket
3478 b\sustainUp\sustainDown
3479 b g \sustainUp a \sustainDown \bar "|."
3482 A third style of pedal notation is a mixture of text and brackets,
3483 obtained by setting the @code{pedalSustainStyle} style property to
3486 @lilypond[quote,fragment,verbatim,relative=2]
3487 \set Staff.pedalSustainStyle = #'mixed
3489 b\sustainUp\sustainDown
3490 b g \sustainUp a \sustainDown \bar "|."
3493 The default `*Ped.' style for sustain and damper pedals corresponds to
3494 style @code{#'text}. The sostenuto pedal uses @code{mixed} style by
3497 @lilypond[quote,fragment,verbatim,relative=2]
3498 c\sostenutoDown d e c, f g a\sostenutoUp
3501 For fine-tuning of the appearance of a pedal bracket, the properties
3502 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
3503 @code{PianoPedalBracket} objects (see
3504 @internalsref{PianoPedalBracket} in the Program reference) can be modified. For example, the
3505 bracket may be extended to the right edge of the note head
3507 @lilypond[quote,fragment,verbatim,relative=2]
3508 \override Staff.PianoPedalBracket
3509 #'shorten-pair = #'(0 . -1.0)
3510 c\sostenutoDown d e c, f g a\sostenutoUp
3514 @subsection Arpeggio
3517 @cindex broken arpeggio
3518 @cindex @code{\arpeggio}
3520 You can specify an arpeggio sign on a chord by attaching an
3521 @code{\arpeggio} to a chord
3524 @lilypond[quote,fragment,relative=1,verbatim]
3528 When an arpeggio crosses staves, you attach an arpeggio to the chords
3529 in both staves, and set
3530 @internalsref{PianoStaff}.@code{connectArpeggios}
3532 @lilypond[quote,fragment,relative=1,verbatim]
3533 \context PianoStaff <<
3534 \set PianoStaff.connectArpeggios = ##t
3535 \new Staff { <c' e g c>\arpeggio }
3536 \new Staff { \clef bass <c,, e g>\arpeggio }
3540 The direction of the arpeggio is sometimes denoted by adding an
3541 arrowhead to the wiggly line
3543 @lilypond[quote,fragment,relative=1,verbatim]
3552 A square bracket on the left indicates that the player should not
3553 arpeggiate the chord
3555 @c todo: ugh, lousy typography. Look for real example. --hwn
3557 @lilypond[quote,fragment,relative=1,verbatim]
3564 @cindex @code{\arpeggio}
3566 @cindex @code{\arpeggioUp}
3568 @cindex @code{\arpeggioDown}
3569 @code{\arpeggioDown},
3570 @cindex @code{\arpeggioNeutral}
3571 @code{\arpeggioNeutral},
3572 @cindex @code{\arpeggioBracket}
3573 @code{\arpeggioBracket}.
3577 Program reference: @internalsref{ArpeggioEvent},
3578 @internalsref{Arpeggio}.
3582 It is not possible to mix connected arpeggios and unconnected
3583 arpeggios in one @internalsref{PianoStaff} at the same point in time.
3585 @node Staff switch lines
3586 @subsection Staff switch lines
3589 @cindex follow voice
3590 @cindex staff switching
3593 @cindex @code{followVoice}
3595 Whenever a voice switches to another staff a line connecting the notes
3596 can be printed automatically. This is switched on by setting
3597 @code{PianoStaff.followVoice} to true
3599 @lilypond[quote,fragment,relative=1,verbatim]
3600 \context PianoStaff <<
3601 \set PianoStaff.followVoice = ##t
3602 \context Staff \context Voice {
3607 \context Staff=two { \clef bass \skip 1*2 }
3613 Program reference: @internalsref{VoiceFollower}.
3617 @cindex @code{\showStaffSwitch}
3618 @code{\showStaffSwitch},
3619 @cindex @code{\hideStaffSwitch}
3620 @code{\hideStaffSwitch}.
3623 @node Cross staff stems
3624 @subsection Cross staff stems
3626 The chords which cross staves may be produced by increasing the length
3627 of the stem in the lower stave, so it reaches the stem in the upper
3628 stave, or vice versa.
3630 @lilypond[raggedright,verbatim]
3631 stemExtend = \once \override Stem #'length = #22
3632 noFlag = \once \override Stem #'flag-style = #'no-flag
3633 \context PianoStaff <<
3635 \stemDown \stemExtend
3649 @section Vocal music
3651 There are three different issues when printing vocal music
3655 Song texts must be entered as texts, not notes. For example, for
3656 lyrics, the input @code{a} should be interpreted as
3657 a one letter text, and not the note A.
3659 Song texts must be printed as text, and not as notes.
3661 Song texts must be aligned with the notes of their melody
3664 The simplest solution to printing music uses the @code{\addlyrics}
3665 function to deal with these three problems in one go. However, these
3666 three functions can be controlled separately, which is necessary
3667 for complex vocal music.
3671 * Setting simple songs::
3673 * Hyphens and extenders::
3674 * The Lyrics context::
3675 * Flexibility in alignment::
3680 @node Setting simple songs
3681 @subsection Setting simple songs
3683 The easiest way to add lyrics to a melody is to append
3686 \addlyrics @{ @var{the lyrics} @}
3690 to a melody. Here is an example,
3692 @lilypond[raggedright,verbatim]
3695 \relative { c2 e4 g2. }
3696 \addlyrics { play the game }
3700 More stanzas can be added by adding more
3701 @code{\addlyrics} sections
3703 @lilypond[raggedright,verbatim]
3706 \relative { c2 e4 g2. }
3707 \addlyrics { play the game }
3708 \addlyrics { speel het spel }
3709 \addlyrics { joue le jeu }
3713 @node Entering lyrics
3714 @subsection Entering lyrics
3718 @cindex @code{\lyricmode}
3721 Lyrics are entered in a special input mode. This mode is is introduced
3722 by the keyword @code{\lyricmode}. In this mode you can enter lyrics,
3723 with punctuation and accents, and the input @code{a} is not parsed as
3724 a pitch, but rather as a one letter syllable. Syllables are entered
3725 like notes, but with pitches replaced by text. For example,
3727 \lyricmode @{ Twin-4 kle4 twin- kle litt- le star2 @}
3731 A word lyrics mode begins with an alphabetic character, and ends with
3732 any space or digit. The following characters can be any character
3733 that is not a digit or white space. One important consequence of this
3734 is that a word can end with @code{@}}. The following example is
3735 usually a bug. The syllable includes a @code{@}}, so the
3736 opening brace is not balanced
3738 \lyricmode @{ twinkle@}
3741 @cindex @code{\property}, in @code{\lyricmode}
3743 Similarly, a period following an alphabetic sequence, is included in
3744 the resulting string. As a consequence, spaces must be inserted around
3747 \override Score . LyricText #'font-shape = #'italic
3751 @cindex spaces, in lyrics
3752 @cindex quotes, in lyrics
3754 Any @code{_} character which appears in an unquoted word is converted
3755 to a space. This provides a mechanism for introducing spaces into words
3756 without using quotes. Quoted words can also be used in Lyrics mode to
3757 specify words that cannot be written with the above rules. The
3758 following example incorporates double quotes
3761 \lyricmode @{ He said: "\"Let" my peo ple "go\"" @}
3764 This example is slightly academic, since it gives better looking
3765 results to use single quotes, @code{``} and @code{''}
3767 \lyricmode @{ He said: ``Let my peo ple go'' @}
3771 The full definition of a word start in Lyrics mode is somewhat more
3774 A word in Lyrics mode begins with: an alphabetic character, @code{_},
3775 @code{?}, @code{!}, @code{:}, @code{'}, the control characters @code{^A}
3776 through @code{^F}, @code{^Q} through @code{^W}, @code{^Y}, @code{^^},
3777 any 8-bit character with ASCII code over 127, or a two-character
3778 combination of a backslash followed by one of @code{`}, @code{'},
3779 @code{"}, or @code{^}.
3785 Program reference: events @internalsref{LyricEvent}, and
3786 @internalsref{LyricText}.
3790 The definition of lyrics mode is too complex.
3792 @node Hyphens and extenders
3793 @subsection Hyphens and extenders
3797 Centered hyphens are entered as `@code{-}@code{-}' between syllables.
3798 The hyphen will have variable length depending on the space between
3799 the syllables and it will be centered between the syllables.
3804 When a lyric is sung over many notes (this is called a melisma), this is
3805 indicated with a horizontal line centered between a syllable and the
3806 next one. Such a line is called an extender line, and it is entered as
3812 Program reference: @internalsref{HyphenEvent},
3813 @internalsref{ExtenderEvent}, @internalsref{LyricHyphen}, and
3814 @internalsref{LyricExtender}
3816 Examples: @inputfileref{input/test,lyric-hyphen-retain.ly}.
3820 @node The Lyrics context
3821 @subsection The Lyrics context
3824 Lyrics are printed by interpreting them in a @internalsref{Lyrics} context
3826 \context Lyrics \lyricmode @dots{}
3829 @cindex automatic syllable durations
3830 @cindex @code{\lyricsto}
3831 @cindex lyrics and melodies
3833 This will place the lyrics according to the durations that were
3834 entered. The lyrics can also be aligned under a given melody
3835 automatically. In this case, it is no longer necessary to enter the
3836 correct duration for each syllable. This is achieved by combining the
3837 melody and the lyrics with the @code{\lyricsto} expression
3839 \lyricsto @var{name} \new Lyrics @dots{}
3842 This aligns the lyrics to the
3844 notes of the @internalsref{Voice} context called @var{name}, which has
3845 to exist. Therefore, normally the @code{Voice} is specified first, and
3846 then the lyrics are specified with @code{\lyricsto}. The command
3847 @code{\lyricsto} switches to @code{\lyricmode} mode automatically, so the
3848 @code{\lyricmode} keyword may be omitted.
3850 For different or more complex orderings, the best way is to setup the
3851 hierarchy of staves and lyrics first, e.g.
3853 \context ChoirStaff <<
3854 \context Lyrics = sopranoLyrics @{ s1 @}
3855 \context Voice = soprano @{ @emph{music} @}
3856 \context Lyrics = tenorLyrics @{ s1 @}
3857 \context Voice = tenor @{ @emph{music} @}
3860 and then combine the appropriate melodies and lyric lines
3862 \lyricsto "soprano" \context Lyrics = sopranoLyrics
3867 The final input would resemble
3870 << \context ChoirStaff << @emph{setup the music} >>
3871 \lyricsto "soprano" @emph{etc}
3872 \lyricsto "alto" @emph{etc}
3878 The @code{\lyricsto} command detects melismata: it only puts one
3879 syllable under a tied or slurred group of notes. If you want to force
3880 an unslurred group of notes to be a melisma, insert @code{\melisma}
3881 after the first note of the group, and @code{\melismaEnd} after the
3884 @lilypond[quote,relative=2,raggedright,fragment,verbatim]
3886 \context Voice = "lala" {
3894 \lyricsto "lala" \new Lyrics {
3900 In addition, notes are considered a melisma if they are manually
3901 beamed, and automatic beaming (see @ref{Setting automatic beam
3902 behavior}) is switched off.
3908 The criteria for deciding melismata can
3909 be tuned with the property @code{melismaBusyProperties}. See
3910 @internalsref{Melisma_translator} in the program reference for more
3915 Lyrics can also be entered without @code{\lyricsto}. In this case the
3916 durations of each syllable must be entered explicitly, for example,
3923 The alignment to a melody can be specified with the
3924 @code{associatedVoice} property,
3927 \set associatedVoice = #"lala"
3931 The value of the property (here: @code{"lala"}) should be the name of
3932 a @internalsref{Voice} context. Without this setting, extender lines
3933 will not be formatted properly.
3935 Here is an example demonstrating manual lyric durations,
3937 @lilypond[relative=1,verbatim,fragment]
3938 << \context Voice = melody {
3942 \new Lyrics \lyricmode {
3943 \set associatedVoice = #"melody"
3949 @cindex choral score
3951 A complete example of a SATB score setup is in section
3952 @ref{Small ensembles}.
3957 @code{\melisma}, @code{\melismaEnd}
3958 @cindex @code{\melismaEnd}
3959 @cindex @code{\melisma}
3963 Program reference: @internalsref{LyricCombineMusic},
3964 @internalsref{Lyrics}, @internalsref{Melisma_translator}.
3966 Examples: @ref{Small ensembles},
3967 @inputfileref{input/regression,lyric-combine-new.ly},
3968 @c TODO: make separate section for melismata
3969 @inputfileref{input/test,lyrics-melisma-variants.ly}.
3970 @inputfileref{input/test,lyrics-melisma-faster.ly}.
3974 Melismata are not detected automatically, and extender lines must be
3978 @c TODO: document \new Staff << Voice \lyricsto >> bug
3980 @node Flexibility in alignment
3981 @subsection Flexibility in alignment
3984 Often, different stanzas of one song are put to one melody in slightly
3985 differing ways. Such variations can still be captured with
3988 One possibility is that the text has a melisma in one stanza, but
3989 multiple syllables in another one. One solution is to make the faster
3990 voice ignore the melisma. This is done by setting
3991 @code{ignoreMelismata} in the Lyrics context.
3993 There has one tricky aspect. The setting for @code{ignoreMelismata}
3994 must be set one syllable @emph{before} the non-melismatic syllable
3995 in the text, as shown here,
3997 @lilypond[verbatim,raggedright]
3999 \relative \context Voice = "lahlah" {
4000 \set Staff.autoBeaming = ##f
4006 \new Lyrics \lyricsto "lahlah" {
4009 \new Lyrics \lyricsto "lahlah" {
4010 \set ignoreMelismata = ##t % applies to "fas"
4012 \unset ignoreMelismata
4019 The @code{ignoreMelismata} applies to the syllable ``fas'', so it
4020 should be entered before ``go''.
4022 The reverse is also possible: making a lyric line slower than the
4023 standard. This can be achieved by insert @code{\skip}s into the
4024 lyrics. For every @code{\skip}, the text will be delayed another note.
4027 @lilypond[verbatim,raggedright]
4028 \relative { c c g' }
4035 More complex variations in text underlay are possible. It is possible
4036 to switch the melody for a line of lyrics during the text. This is
4037 done by setting the @code{associatedVoice} property. In the example
4039 @lilypond[raggedright]
4041 \relative \context Voice = "lahlah" {
4042 \set Staff.autoBeaming = ##f
4045 \context Voice = alternative {
4049 % show associations clearly.
4050 \override NoteColumn #'force-hshift = #-3
4062 \new Lyrics \lyricsto "lahlah" {
4063 Ju -- ras -- sic Park
4065 \new Lyrics \lyricsto "lahlah" {
4067 % Tricky: need to set associatedVoice
4068 % one syllable too soon!
4069 \set associatedVoice = alternative % applies to "ran"
4073 \set associatedVoice = lahlah % applies to "rus"
4079 the text for the first stanza is set to a melody called ``lahlah'',
4082 \new Lyrics \lyricsto "lahlah" {
4083 Ju -- ras -- sic Park
4088 The second stanza initially is set to the @code{lahlah} context, but
4089 for the syllable ``ran'', it switches to a different melody.
4090 This is achieved with
4092 \set associatedVoice = alternative
4096 Here, @code{alternative} is the name of the @code{Voice} context
4097 containing the triplet.
4099 Again, the command must be one syllable too early, before ``Ty'' in
4103 \new Lyrics \lyricsto "lahlah" {
4104 \set associatedVoice = alternative % applies to "ran"
4108 \set associatedVoice = lahlah % applies to "rus"
4114 The underlay is switched back to the starting situation by assigning
4115 @code{lahlah} to @code{associatedVoice}.
4121 @subsection More stanzas
4123 @cindex phrasing, in lyrics
4126 @cindex stanza number
4127 @cindex singer's names
4128 @cindex name of singer
4130 Stanza numbers can be added by setting @code{stanza}, e.g.
4132 @lilypond[quote,verbatim,relative=2,fragment]
4134 \time 3/4 g2 e4 a2 f4 g2.
4137 Hi, my name is Bert.
4140 Oh, che -- ri, je t'aime
4144 These numbers are put just before the start of first syllable.
4146 Names of singers can also be added. They are printed at the start of
4147 the line, just like instrument names. They are created by setting
4148 @code{vocalName}. A short version may be entered as @code{vocNam}.
4151 @lilypond[fragment,quote,verbatim,relative=2]
4153 \time 3/4 g2 e4 a2 f4 g2.
4155 \set vocalName = "Bert "
4156 Hi, my name is Bert.
4158 \set vocalName = "Ernie "
4159 Oh, che -- ri, je t'aime
4165 Program reference: Layout objects @internalsref{LyricText} and
4166 @internalsref{VocalName}. Music expressions
4167 @internalsref{LyricEvent}.
4175 The term @emph{ambitus} denotes a range of pitches for a given voice
4176 in a part of music. It also may denote the pitch range that a musical
4177 instrument is capable of playing. Ambits are printed on vocal parts,
4178 so performers can easily determine it meets their capabilities.
4180 It denoted at the beginning of a piece near the initial clef. The
4181 range is graphically specified by two note heads, that represent the
4182 minimum and maximum pitch. To print such ambits, add the
4183 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
4190 \consists Ambitus_engraver
4195 This results in the following output
4197 @lilypond[quote,raggedright]
4201 \consists Ambitus_engraver
4205 \relative \new Staff {
4210 If you have multiple voices in a single staff, and you want a single
4211 ambitus per staff rather than per each voice, add the
4212 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
4213 rather than to the @internalsref{Voice} context. Here is an example,
4215 @lilypond[verbatim,raggedright]
4218 \consists "Ambitus_engraver"
4220 \override Ambitus #'X-offset-callbacks
4221 = #(list (lambda (grob axis) -1.0))
4226 \consists "Ambitus_engraver"
4235 This example uses one advanced feature,
4238 \override Ambitus #'X-offset-callbacks
4239 = #(list (lambda (grob axis) -1.0))
4243 This code moves the ambitus to the left. The same effect could have
4244 been achieved with @code{extra-offset}, but then the formatting system
4245 would not reserve space for the moved object.
4249 Program reference: @internalsref{Ambitus},
4250 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
4251 @internalsref{AmbitusAccidental}.
4253 Examples: @inputfileref{input/regression,ambitus.ly}.
4257 There is no collision handling in the case of multiple per-voice
4260 @node Other instrument specific notation, Tablatures, Vocal music, Notation manual
4261 @section Other instrument specific notation
4267 @node Harmonic notes, , Other instrument specific notation, Other instrument specific notation
4268 @subsection Harmonic notes
4270 @cindex artificial harmonics
4273 Artificial harmonics are notated with a different notehead style. They
4275 marking the harmonic pitch with @code{\harmonic}.
4277 @lilypond[raggedright,verbatim]
4284 @node Tablatures, Popular music, Other instrument specific notation, Notation manual
4288 @cindex guitar tablature
4290 Tablature notation is used for notating music for plucked string
4291 instruments. Pitches are not denoted with note heads, but by
4292 indicating on which string and fret a note must be played. LilyPond
4293 offers limited support for tablature.
4296 * Tablatures basic::
4297 * Non-guitar tablatures::
4300 @node Tablatures basic, Non-guitar tablatures, Tablatures, Tablatures
4301 @subsection Tablatures basic
4302 @cindex Tablatures basic
4304 The string number associated to a note is given as a backslash
4305 followed by a number, e.g. @code{c4\3} for a C quarter on the third
4306 string. By default, string 1 is the highest one, and the tuning
4307 defaults to the standard guitar tuning (with 6 strings). The notes
4308 are printed as tablature, by using @internalsref{TabStaff} and
4309 @internalsref{TabVoice} contexts
4311 @lilypond[quote,fragment,verbatim]
4318 @cindex @code{minimumFret}
4321 When no string is specified, the first string that does not give a
4322 fret number less than @code{minimumFret} is selected. The default
4323 value for @code{minimumFret} is 0
4328 \set TabStaff.minimumFret = #8
4331 @lilypond[quote,noindent,raggedright]
4335 \set TabStaff.minimumFret = #8
4338 \context StaffGroup <<
4339 \context Staff { \clef "G_8" \frag }
4340 \context TabStaff { \frag }
4346 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}, and
4347 @internalsref{StringNumberEvent}.
4351 Chords are not handled in a special way, and hence the automatic
4352 string selector may easily select the same string to two notes in a
4356 @node Non-guitar tablatures, , Tablatures basic, Tablatures
4357 @subsection Non-guitar tablatures
4358 @cindex Non-guitar tablatures
4360 You can change the number of strings, by setting the number of lines
4361 in the @internalsref{TabStaff}.
4363 You can change the tuning of the strings. A string tuning is given as
4364 a Scheme list with one integer number for each string, the number
4365 being the pitch (measured in semitones relative to middle C) of an
4366 open string. The numbers specified for @code{stringTuning} are the
4367 numbers of semitones to subtract or add, starting the specified pitch
4368 by default middle C, in string order. In the next example,
4369 @code{stringTunings} is set for the pitches e, a, d, and g
4371 @lilypond[quote,fragment,verbatim]
4372 \context TabStaff <<
4373 \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
4376 a,4 c' a e' e c' a e'
4383 No guitar special effects have been implemented.
4387 Program reference: @internalsref{Tab_note_heads_engraver}.
4390 @node Popular music, Orchestral music, Tablatures, Notation manual
4391 @section Popular music
4398 * Printing chord names::
4402 @node Chord names, Chords mode, Popular music, Popular music
4403 @subsection Chord names
4406 LilyPond has support for both printing chord names. Chords may be
4407 entered in musical chord notation, i.e. @code{< .. >}, but they can
4408 also be entered by name. Internally, the chords are represented as a
4409 set of pitches, so they can be transposed
4412 @lilypond[quote,verbatim,raggedright]
4413 twoWays = \transpose c c' {
4422 << \context ChordNames \twoWays
4423 \context Voice \twoWays >>
4426 This example also shows that the chord printing routines do not try to
4427 be intelligent. The last chord (@code{f bes d}) is not interpreted as
4433 * Printing chord names::
4438 @subsection Chords mode
4441 In chord mode sets of pitches (chords) are entered with common names.
4442 A chord is entered by the root, which is entered like a common pitch
4444 @lilypond[quote,fragment,verbatim,relative=2]
4445 \chordmode { es4. d8 c2 }
4449 The mode is introduced by the keyword @code{\chordmode}.
4454 Other chords may be entered by suffixing a colon, and introducing a
4455 modifier, and optionally, a number
4457 @lilypond[quote,fragment,verbatim]
4458 \chordmode { e1:m e1:7 e1:m7 }
4460 The first number following the root is taken to be the `type' of the
4461 chord, thirds are added to the root until it reaches the specified
4463 @lilypond[quote,fragment,verbatim]
4464 \chordmode { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
4467 @cindex root of chord
4468 @cindex additions, in chords
4469 @cindex removals, in chords
4471 More complex chords may also be constructed adding separate steps
4472 to a chord. Additions are added after the number following
4473 the colon, and are separated by dots
4475 @lilypond[quote,verbatim,fragment]
4476 \chordmode { c:5.6 c:3.7.8 c:3.6.13 }
4478 Chord steps can be altered by suffixing a @code{-} or @code{+} sign
4480 @lilypond[quote,verbatim,fragment]
4481 \chordmode { c:7+ c:5+.3- c:3-.5-.7- }
4483 Removals are specified similarly, and are introduced by a caret. They
4484 must come after the additions
4485 @lilypond[quote,verbatim,fragment]
4486 \chordmode { c^3 c:7^5 c:9^3.5 }
4489 Modifiers can be used to change pitches. The following modifiers are
4493 is the minor chord. This modifier lowers the 3rd and (if present) the 7th step.
4495 is the diminished chord. This modifier lowers the 3rd, 5th and (if present)
4498 is the augmented chord. This modifier raises the 5th step.
4500 is the major 7th chord. This modifier raises the 7th step if present.
4502 is the suspended 4th or 2nd. This modifier removes the 3rd
4503 step. Append either @code{2} or @code{4} to add the 2nd or 4th step to
4506 Modifiers can be mixed with additions
4507 @lilypond[quote,verbatim,fragment]
4508 \chordmode { c:sus4 c:7sus4 c:dim7 c:m6 }
4511 @cindex modifiers, in chords.
4518 Since an unaltered 11 does not sound good when combined with an
4519 unaltered 3, the 11 is removed in this case (unless it is added
4522 @lilypond[quote,fragment,verbatim]
4523 \chordmode { c:13 c:13.11 c:m13 }
4528 An inversion (putting one pitch of the chord on the bottom), as well
4529 as bass notes, can be specified by appending
4530 @code{/}@var{pitch} to the chord
4531 @lilypond[quote,fragment,verbatim]
4532 \chordmode { c1 c/g c/f }
4536 A bass note can be added instead of transposed out of the chord,
4537 by using @code{/+}@var{pitch}.
4539 @lilypond[quote,fragment,verbatim]
4540 \chordmode { c1 c/+g c/+f }
4543 Chords is a mode similar to @code{\lyricmode} etc. Most
4544 of the commands continue to work, for example, @code{r} and
4545 @code{\skip} can be used to insert rests and spaces, and property
4546 commands may be used to change various settings.
4552 Each step can only be present in a chord once. The following
4553 simply produces the augmented chord, since @code{5+} is interpreted
4556 @lilypond[quote,verbatim,fragment]
4557 \chordmode { c:5.5-.5+ }
4561 @node Printing chord names
4562 @subsection Printing chord names
4564 @cindex printing chord names
4568 For displaying printed chord names, use the @internalsref{ChordNames} context.
4569 The chords may be entered either using the notation
4570 described above, or directly using @code{<} and @code{>}
4572 @lilypond[quote,verbatim,raggedright]
4574 \chordmode {a1 b c} <d' f' a'> <e' g' b'>
4578 \context ChordNames \scheme
4579 \context Staff \scheme
4583 You can make the chord changes stand out by setting
4584 @internalsref{ChordNames}.@code{chordChanges} to true. This will only
4585 display chord names when there is a change in the chords scheme and at
4586 the start of a new line
4588 @lilypond[quote,verbatim,linewidth=9\cm]
4589 scheme = \chordmode {
4590 c1:m c:m \break c:m c:m d
4593 \context ChordNames {
4594 \set chordChanges = ##t
4596 \context Staff \transpose c c' \scheme
4600 The previous examples all show chords over a staff. This is not
4601 necessary. Chords may also be printed separately. It may be necessary
4602 to add @internalsref{Volta_engraver} and @internalsref{Bar_engraver}
4603 for showing repeats.
4605 @lilypond[raggedright,verbatim]
4606 \new ChordNames \with {
4607 \override BarLine #'bar-size = #4
4608 voltaOnThisStaff = ##t
4609 \consists Bar_engraver
4610 \consists "Volta_engraver"
4612 \repeat volta 2 \chordmode {
4621 The default chord name layout is a system for Jazz music, proposed by
4622 Klaus Ignatzek (see @ref{Literature list}). It can be tuned through the
4623 following properties
4626 @cindex @code{chordNameExceptions}
4627 @item chordNameExceptions
4628 This is a list that contains the chords that have special formatting.
4629 For an example of tuning this property, see
4630 @inputfileref{input/regression,chord-name-exceptions.ly}.
4631 @cindex exceptions, chord names.
4634 @cindex @code{majorSevenSymbol}
4635 @item majorSevenSymbol
4636 This property contains the markup object used for the 7th step, when
4637 it is major. Predefined options are @code{whiteTriangleMarkup} and
4638 @code{blackTriangleMarkup}. See
4639 @inputfileref{input/regression,chord-name-major7.ly} for an example.
4641 @cindex @code{chordNameSeparator}
4642 @item chordNameSeparator
4643 Different parts of a chord name are normally separated by a
4644 slash. By setting @code{chordNameSeparator}, you can specify other
4646 @lilypond[quote,fragment,verbatim]
4647 \context ChordNames \chordmode {
4649 \set chordNameSeparator
4650 = \markup { \typewriter "|" }
4655 @cindex @code{chordRootNamer}
4656 @item chordRootNamer
4657 The root of a chord is usually printed as a letter with an optional
4658 alteration. The transformation from pitch to letter is done by this
4659 function. Special note names (for example, the German ``H'' for a
4660 B-chord) can be produced by storing a new function in this property.
4662 @cindex @code{chordNoteNamer}
4663 @item chordNoteNamer
4664 The default is to print single pitch, e.g. the bass note, using the
4665 @code{chordRootNamer}. The @code{chordNoteNamer} property can be set
4666 to a specialized function to change this behavior. For example, the
4667 base can be printed in lower case.
4671 The predefined variables @code{\germanChords},
4672 @code{\semiGermanChords} set these variables. The effect is
4675 @lilypondfile[]{chord-names-german.ly}
4677 There are also two other chord name schemes implemented: an alternate
4678 Jazz chord notation, and a systematic scheme called Banter chords. The
4679 alternate jazz notation is also shown on the chart in @ref{Chord name
4680 chart}. Turning on these styles is described in the input file
4681 @inputfileref{input/test,chord-names-jazz.ly}.
4685 @cindex chords, jazz
4690 @cindex @code{\germanChords}
4691 @code{\germanChords},
4692 @cindex @code{\semiGermanChords}
4693 @code{\semiGermanChords}.
4700 Examples: @inputfileref{input/regression,chord-name-major7.ly},
4701 @inputfileref{input/regression,chord-name-exceptions.ly},
4702 @inputfileref{input/test,chord-names-jazz.ly},
4703 @inputfileref{input/test,chords-without-melody.ly}.
4706 Init files: @file{scm/chords-ignatzek.scm}, and @file{scm/chord-entry.scm}.
4711 Chord names are determined solely from the list of pitches. Chord
4712 inversions are not identified, and neither are added bass notes. This
4713 may result in strange chord names when chords are entered with the
4714 @code{< .. >} syntax.
4718 @subsection Improvisation
4720 Improvisation is sometimes denoted with slashed note heads. Such note
4721 heads can be created by adding a @internalsref{Pitch_squash_engraver}
4722 to the @internalsref{Staff} or @internalsref{Voice} context. Then, the
4726 \set squashedPosition = #0
4727 \override NoteHead #'style = #'slash
4731 switches on the slashes.
4733 There are shortcuts @code{\improvisationOn} (and an accompanying
4734 @code{\improvisationOff}) for this command sequence. They are used in
4735 the following example
4737 @lilypond[verbatim,raggedright]
4739 \consists Pitch_squash_engraver
4741 e8 e g a a16(bes)(a8) g \improvisationOn
4744 ~fis2 \improvisationOff a16(bes) a8 g e
4750 @node Orchestral music
4751 @section Orchestral music
4753 @cindex Writing parts
4755 Orchestral music involves some special notation, both in the full
4756 score and the individual parts. This section explains how to tackle
4757 some common problems in orchestral music.
4762 * System start delimiters::
4763 * Aligning to cadenzas::
4766 * Instrument names::
4768 * Instrument transpositions::
4769 * Multi measure rests::
4770 * Automatic part combining::
4772 * Different editions from one source::
4773 * Quoting other voices::
4776 @node System start delimiters
4777 @subsection System start delimiters
4779 Polyphonic scores consist of many staves. These staves can be
4780 constructed in three different ways
4782 @item The group is started with a brace at the left, and bar lines are
4783 connected. This is done with the @internalsref{GrandStaff} context.
4794 @item The group is started with a bracket, and bar lines are connected. This is done with the
4795 @internalsref{StaffGroup} context
4806 @item The group is started with a vertical line. Bar lines are not
4807 connected. This is the default for the score.
4818 @cindex Staff, multiple
4819 @cindex bracket, vertical
4820 @cindex brace, vertical
4827 The bar lines at the start of each system are
4828 @internalsref{SystemStartBar}, @internalsref{SystemStartBrace}, and
4829 @internalsref{SystemStartBracket}. Only one of these types is created
4830 in every context, and that type is determined by the property
4831 @code{systemStartDelimiter}.
4833 @node Aligning to cadenzas
4834 @subsection Aligning to cadenzas
4837 In an orchestral context, cadenzas present a special problem:
4838 when constructing a score that includes a cadenza, all other
4839 instruments should skip just as many notes as the length of the
4840 cadenza, otherwise they will start too soon or too late.
4842 A solution to this problem are the functions @code{mmrest-of-length}
4843 and @code{skip-of-length}. These Scheme functions take a piece music
4844 as argument, and generate a @code{\skip} or multi rest, exactly as
4845 long as the piece. The use of @code{mmrest-of-length} is demonstrated
4846 in the following example.
4848 @lilypond[verbatim,raggedright]
4849 cadenza = \relative c' {
4850 c4 d8 << { e f g } \\ { d4. } >>
4855 \new Staff { \cadenza c'4 }
4857 #(ly:export (mmrest-of-length cadenza))
4867 @node Rehearsal marks
4868 @subsection Rehearsal marks
4869 @cindex Rehearsal marks
4871 @cindex @code{\mark}
4873 To print a rehearsal mark, use the @code{\mark} command
4875 @lilypond[quote,fragment,verbatim,relative=1]
4886 (The letter I is skipped in accordance with engraving traditions.)
4888 @c FIXME - should make that tunable.
4890 The mark is incremented automatically if you use @code{\mark
4891 \default}, but you can also use an integer argument to set the mark
4892 manually. The value to use is stored in the property
4893 @code{rehearsalMark}.
4895 The style is defined by the property @code{markFormatter}. It is a
4896 function taking the current mark (an integer) and the current context
4897 as argument. It should return a markup object. In the following
4898 example, @code{markFormatter} is set to a canned procedure. After a
4899 few measures, it is set to function that produces a boxed number.
4901 @lilypond[quote,verbatim,fragment,relative=2]
4902 \set Score.markFormatter = #format-mark-numbers
4905 \set Score.markFormatter
4906 = #(lambda (mark context)
4908 (make-box-markup (number->string mark))))
4913 The file @file{scm/translation-functions.scm} contains the definitions
4914 of @code{format-mark-numbers} (the default format) and
4915 @code{format-mark-letters}. These can be used as inspiration for other
4916 formatting functions.
4919 @cindex coda on bar line
4920 @cindex segno on bar line
4921 @cindex fermata on bar line
4922 @cindex bar lines, symbols on
4924 The @code{\mark} command can also be used to put signs like coda,
4925 segno and fermatas on a bar line. Use @code{\markup} to
4926 to access the appropriate symbol
4928 @lilypond[quote,fragment,verbatim,relative=2]
4929 c1 \mark \markup { \musicglyph #"scripts-ufermata" }
4933 In the case of a line break, marks must also be printed at the end of
4934 the line, and not at the beginning. Use the following to force that
4937 \override Score.RehearsalMark
4938 #'break-visibility = #begin-of-line-invisible
4944 @cindex bar lines, putting symbols on
4948 Program reference: @internalsref{MarkEvent}, @internalsref{RehearsalMark}.
4950 Init files: @file{scm/translation-functions.scm} contains the
4951 definition of @code{format-mark-numbers} and
4952 @code{format-mark-letters}. They can be used as inspiration for other
4953 formatting functions.
4955 Examples: @inputfileref{input/regression,rehearsal-mark-letter.ly},
4957 @inputfileref{input/regression,rehearsal-mark-number.ly}.
4961 @subsection Bar numbers
4965 @cindex measure numbers
4966 @cindex @code{currentBarNumber}
4968 Bar numbers are printed by default at the start of the line. The
4969 number itself is stored in the @code{currentBarNumber} property, which
4970 is normally updated automatically for every measure.
4972 Bar numbers can be typeset at regular intervals instead of at the
4973 beginning of each line. This is illustrated in the following example,
4974 whose source is available as
4975 @inputfileref{input/test,bar-number-regular-interval.ly}
4977 @lilypondfile[quote]{bar-number-regular-interval.ly}
4981 Program reference: @internalsref{BarNumber}.
4983 Examples: @inputfileref{input/test,bar-number-every-five-reset.ly},
4984 and @inputfileref{input/test,bar-number-regular-interval.ly}.
4988 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
4989 there is one at the top. To solve this, the
4990 @code{padding} property of @internalsref{BarNumber} can be
4991 used to position the number correctly.
4993 @node Instrument names
4994 @subsection Instrument names
4996 In an orchestral score, instrument names are printed left side of the
4999 This can be achieved by setting @internalsref{Staff}.@code{instrument}
5000 and @internalsref{Staff}.@code{instr}. This will print a string before
5001 the start of the staff. For the first start, @code{instrument} is
5002 used, for the next ones @code{instr} is used.
5004 @lilypond[quote,verbatim,raggedright,relative=1,fragment]
5005 \set Staff.instrument = "Ploink "
5006 \set Staff.instr = "Plk "
5012 You can also use markup texts to construct more complicated instrument
5015 @lilypond[quote,fragment,verbatim,raggedright]
5017 \set Staff.instrument = \markup {
5018 \column < "Clarinetti" { "in B"
5019 \smaller \flat } > }
5024 For longer instrument names, it may be useful to increase the
5025 @code{indent} setting in the @code{\paper} block.
5029 Program reference: @internalsref{InstrumentName}.
5033 When you put a name on a grand staff or piano staff the width of the
5034 brace is not taken into account. You must add extra spaces to the end of
5035 the name to avoid a collision.
5038 @subsection Transpose
5040 @cindex transposition of pitches
5041 @cindex @code{\transpose}
5043 A music expression can be transposed with @code{\transpose}. The
5046 \transpose @var{from} @var{to} @var{musicexpr}
5049 This means that @var{musicexpr} is transposed by the interval between
5050 the pitches @var{from} and @var{to}: any note with pitch @code{from}
5051 is changed to @code{to}.
5054 For example, consider a piece written in the key of D major. If
5055 this piece is a little too low for its performer, it can be
5056 transposed up to E major with
5058 \transpose d e @dots{}
5061 Consider a part written for violin (a C instrument). If
5062 this part is to be played on the A clarinet, the following
5063 transposition will produce the appropriate part
5066 \transpose a c @dots{}
5069 @code{\transpose} distinguishes between enharmonic pitches: both
5070 @code{\transpose c cis} or @code{\transpose c des} will transpose up
5071 half a tone. The first version will print sharps and the second
5072 version will print flats
5074 @lilypond[quote,raggedright,verbatim]
5075 mus = { \key d \major cis d fis g }
5079 \transpose c g' \mus
5080 \transpose c f' \mus
5087 Program reference: @internalsref{TransposedMusic}, and
5088 @internalsref{UntransposableMusic}.
5092 If you want to use both @code{\transpose} and @code{\relative},
5093 you must put @code{\transpose} outside of @code{\relative}, since
5094 @code{\relative} will have no effect music that appears inside a
5097 @node Instrument transpositions
5098 @subsection Instrument transpositions
5100 The key of a transposing instrument can also be specified. This
5101 applies to many wind instruments, for example, clarinets (B-flat, A and
5102 E-flat), horn (F) and trumpet (B-flat, C, D and E-flat).
5105 The transposition is entered after the keyword @code{\transposition}
5108 \transposition bes %% B-flat clarinet
5111 This command sets the property @code{instrumentTransposition}. The value of
5112 this property is used for MIDI output and quotations. It does not
5113 affect how notes are printed in the current staff.
5115 @cindex transposition, MIDI
5116 @cindex transposition, instrument
5119 @node Multi measure rests
5120 @subsection Multi measure rests
5121 @cindex multi measure rests
5122 @cindex Rests, multi measure
5126 Multi measure rests are entered using `@code{R}'. It is specifically
5127 meant for full bar rests and for entering parts: the rest can expand
5128 to fill a score with rests, or it can be printed as a single
5129 multimeasure rest. This expansion is controlled by the property
5130 @code{Score.skipBars}. If this is set to true, empty measures will not
5131 be expanded, and the appropriate number is added automatically
5133 @lilypond[quote,fragment,verbatim]
5134 \time 4/4 r1 | R1 | R1*2
5135 \set Score.skipBars = ##t R1*17 R1*4
5138 The @code{1} in @code{R1} is similar to the duration notation used for
5139 notes. Hence, for time signatures other than 4/4, you must enter other
5140 durations. This can be done with augmentation dots or fractions
5142 @lilypond[quote,fragment,verbatim]
5143 \set Score.skipBars = ##t
5152 An @code{R} spanning a single measure is printed as either a whole rest
5153 or a breve, centered in the measure regardless of the time signature.
5155 @cindex text on multi-measure rest
5156 @cindex script on multi-measure rest
5157 @cindex fermata on multi-measure rest
5159 Texts can be added to multi-measure rests by using the
5160 @var{note}-@code{markup} syntax (see @ref{Text markup}). In this case, the number is
5161 replaced. If you need both texts and the number, you must add the
5162 number by hand. A variable (@code{\fermataMarkup}) is provided for
5166 @lilypond[quote,verbatim,fragment]
5168 R2._\markup { "Ad lib" }
5172 If you want to have a text on the left end of a multi-measure rest,
5173 attach the text to a zero-length skip note, i.e.
5181 @cindex whole rests for a full measure
5185 Program reference: @internalsref{MultiMeasureRestEvent},
5186 @internalsref{MultiMeasureTextEvent},
5187 @internalsref{MultiMeasureRestMusicGroup}, and
5188 @internalsref{MultiMeasureRest}.
5190 The layout object @internalsref{MultiMeasureRestNumber} is for the
5191 default number, and @internalsref{MultiMeasureRestText} for user
5196 It is not possible to use fingerings (e.g. @code{R1-4}) to put numbers
5197 over multi-measure rests.
5199 @cindex condensing rests
5201 There is no way to automatically condense multiple rests into a single
5202 multimeasure rest. Multi measure rests do not take part in rest
5205 Be careful when entering multimeasure rests followed by whole
5206 notes. The following will enter two notes lasting four measures each
5210 When @code{skipBars} is set, the result will look OK, but the bar
5211 numbering will be off.
5213 @node Automatic part combining
5214 @subsection Automatic part combining
5215 @cindex automatic part combining
5216 @cindex part combiner
5219 Automatic part combining is used to merge two parts of music onto a
5220 staff. It is aimed at typesetting orchestral scores. When the two
5221 parts are identical for a period of time, only one is shown. In
5222 places where the two parts differ, they are typeset as separate
5223 voices, and stem directions are set automatically. Also, solo and
5224 @emph{a due} parts are identified and can be marked.
5226 The syntax for part combining is
5229 \partcombine @var{musicexpr1} @var{musicexpr2}
5234 The following example demonstrates the basic functionality of the part
5235 combiner: putting parts on one staff, and setting stem directions and
5238 @lilypond[quote,verbatim,raggedright,fragment]
5239 \new Staff \partcombine
5240 \relative g' { g g a( b) c c r r }
5241 \relative g' { g g r4 r e e g g }
5244 The first @code{g} appears only once, although it was
5245 specified twice (once in each part). Stem, slur and tie directions are
5246 set automatically, depending whether there is a solo or unisono. The
5247 first part (with context called @code{one}) always gets up stems, and
5248 `solo', while the second (called @code{two}) always gets down stems and
5251 If you just want the merging parts, and not the textual markings, you
5252 may set the property @code{printPartCombineTexts} to false
5254 @lilypond[quote,verbatim,raggedright,fragment,relative=2]
5256 \set Staff.printPartCombineTexts = ##f
5258 \relative g' { g a( b) r }
5259 \relative g' { g r4 r f }
5264 Both arguments to @code{\partcombine} will be interpreted as
5265 @internalsref{Voice} contexts. If using relative octaves,
5266 @code{\relative} should be specified for both music expressions, i.e.
5270 \relative @dots{} @var{musicexpr1}
5271 \relative @dots{} @var{musicexpr2}
5275 A @code{\relative} section that is outside of @code{\partcombine} has
5276 no effect on the pitches of @var{musicexpr1} and @var{musicexpr2}.
5280 Program reference: @internalsref{PartCombineMusic},
5281 @internalsref{SoloOneEvent}, and
5282 @internalsref{SoloTwoEvent}, and
5283 @internalsref{UnisonoEvent}.
5287 When @code{printPartCombineTexts} is set, when the two voices play the
5288 same notes on and off, the part combiner may typeset @code{a2} more
5289 than once in a measure.
5291 @code{\partcombine} cannot be inside @code{\times}.
5293 @code{\partcombine} cannot be inside @code{\relative}.
5295 Internally, the @code{\partcombine} interprets both arguments as
5296 @code{Voice}s named @code{one} and @code{two}, and then decides when
5297 the parts can be combined. Consequently, if the arguments switch to
5298 differently named @internalsref{Voice} contexts, the events in those
5302 @subsection Hiding staves
5304 @cindex Frenched scores
5305 @cindex Hiding staves
5307 In orchestral scores, staff lines that only have rests are usually
5308 removed. This saves some space. This style is called `French Score'.
5309 For @internalsref{Lyrics},
5310 @internalsref{ChordNames} and @internalsref{FiguredBass}, this is
5311 switched on by default. When these line of these contexts turn out
5312 empty after the line-breaking process, they are removed.
5314 For normal staves, a specialized @internalsref{Staff} context is
5315 available, which does the same: staves containing nothing (or only
5316 multi measure rests) are removed. The context definition is stored in
5317 @code{\RemoveEmptyStaffContext} variable. Observe how the second staff
5318 in this example disappears in the second line
5321 @lilypond[quote,verbatim]
5323 \context { \RemoveEmptyStaffContext }
5328 \new Staff { e4 f g a \break c1 }
5329 \new Staff { c4 d e f \break R1 }
5334 The first system shows all staves in full. If empty staves should be
5335 removed from the first system too, set @code{remove-first} to false in
5336 @internalsref{RemoveEmptyVerticalGroup}.
5338 Another application is making ossia sections, i.e. alternative
5339 melodies on a separate piece of staff, with help of a Frenched
5340 staff. See @inputfileref{input/test,ossia.ly} for an example.
5343 @node Different editions from one source
5344 @subsection Different editions from one source
5346 The @code{\tag} command marks music expressions with a name. These
5347 tagged expressions can be filtered out later. With this mechanism it
5348 is possible to make different versions of the same music source.
5350 In the following example, we see two versions of a piece of music, one
5351 for the full score, and one with cue notes for the instrumental part
5367 The same can be applied to articulations, texts, etc.: they are
5370 -\tag #@var{your-tag}
5372 to an articulation, for example,
5377 This defines a note with a conditional fingering indication.
5379 By applying the @code{\keepWithTag} command, tagged expressions
5380 can be filtered. For example,
5384 \keepWithTag #'score @var{the music}
5385 \keepWithTag #'part @var{the music}
5390 @lilypondfile[quote]{tag-filter.ly}
5393 The argument of the @code{\tag} command should be a symbol, or a list
5394 of symbols, for example,
5396 \tag #'(original-part transposed-part) @dots{}
5401 Examples: @inputfileref{input/regression,tag-filter.ly}.
5404 @node Quoting other voices
5405 @subsection Quoting other voices
5407 With quotations, fragments of other parts can be inserted into a part
5408 directly. Before a part can be quoted, it must be marked especially as
5409 quotable. This is done with code @code{\addquote} command.
5412 \addquote @var{name} @var{music}
5417 Here, @var{name} is an identifying string. The @var{music} is any kind
5418 of music. This is an example of @code{\addquote}
5421 \addquote clarinet \relative c' {
5426 This command must be entered at toplevel, i.e. outside any music
5429 After calling @code{\addquote}, the quotation may then be done with
5433 \quote @var{name} @var{duration}
5436 During a part, a piece of music can be quoted with the @code{\quote}
5443 This would cite three quarter notes (@code{2.} is a dotted half note)
5444 of the previously added @code{clarinet} voice.
5446 More precisely, it takes the current time-step of the part being
5447 printed, and extracts the notes at the corresponding point of the
5448 @code{\addquote}d voice. Therefore, the argument to @code{\addquote}
5449 should be the entire part of the voice to be quoted, including any
5450 rests at the beginning.
5452 Quotations take into account the transposition of both source and target
5453 instruments, if they are specified using the @code{\transposition} command.
5455 @lilypond[quote,raggedright,verbatim]
5456 \addquote clarinet \relative c' {
5462 e'8 f'8 \quote clarinet 2
5466 The type of events that are present in cue notes can be trimmed with
5467 the @code{quotedEventTypes} property. The default value is
5468 @code{(note-event rest-event)}, which means that only notes of and
5469 rests of the cued voice end up in the @code{\quote}.
5473 \set Staff.quotedEventTypes = #'(note-event articulation-event dynamic-event)
5477 will quote notes (but no rests), together with scripts and dynamics.
5481 Only the contents of the first @internalsref{Voice} occurring in an
5482 @code{\addquote} command will be considered for quotation, so
5483 @var{music} can not contain @code{\new} and @code{\context Voice}
5484 statements that would switch to a different Voice.
5489 In this manual: @ref{Instrument transpositions}.
5491 Examples: @inputfileref{input/regression,quote.ly}
5492 @inputfileref{input/regression,quote-transposition.ly}
5494 Program reference: @internalsref{QuoteMusic}.
5496 @node Formatting cue notes
5497 @section Formatting cue notes
5500 The previous section deals with inserting notes from another
5501 voice. When making a part, these notes need to be specially formatted.
5502 Here is an example of formatted cue notes
5507 \override Stem #'length = #5.5
5508 \override Beam #'thickness = #0.384
5509 \override Beam #'space-function =
5510 #(lambda (beam mult) (* 0.8 (Beam::space_function beam mult)))
5514 \set Staff.instrument = #"Horn in F"
5515 \set Score.skipBars = ##t
5518 \once \override Staff.MultiMeasureRest #'staff-position = #-6
5525 r8^"Bsn." c'8 f'8[ f'8]
5535 There are a couple of points to take care of:
5539 The multi rest of the original part should be moved up or down during
5542 Cue notes have smaller font sizes.
5544 When cued notes have a clef change relative to the original part, the
5545 clef should be restored after the cue section. This minimizes
5546 confusion for the reader,
5548 When the original part starts, this should be marked with the name of
5549 the instrument, in this case ``Horn.'' Of course, the cue part is
5550 marked with the instrument playing the cue.
5555 @node Ancient notation
5556 @section Ancient notation
5558 @cindex Vaticana, Editio
5559 @cindex Medicaea, Editio
5564 Support for ancient notation includes features for mensural notation
5565 and Gregorian Chant notation. There is also limited support for
5566 figured bass notation.
5568 Many graphical objects provide a @code{style} property, see
5571 @ref{Ancient note heads},
5573 @ref{Ancient accidentals},
5575 @ref{Ancient rests},
5577 @ref{Ancient clefs},
5579 @ref{Ancient flags},
5581 @ref{Ancient time signatures}.
5584 By manipulating such a grob property, the typographical appearance of
5585 the affected graphical objects can be accommodated for a specific
5586 notation flavor without need for introducing any new notational
5589 In addition to the standard articulation signs described in section
5590 @ref{Articulations}, specific articulation signs for ancient notation
5595 @ref{Ancient articulations}
5598 Other aspects of ancient notation can not that easily be expressed as
5599 in terms of just changing a style property of a graphical object or
5600 adding articulation signs. Some notational concepts are introduced
5601 specifically for ancient notation,
5612 If this all is too much of documentation for you, and you just want to
5613 dive into typesetting without worrying too much about the details on
5614 how to customize a context, you may have a look at the predefined
5615 contexts. Use them to set up predefined style-specific voice and
5616 staff contexts, and directly go ahead with the note entry,
5620 @ref{Gregorian Chant contexts},
5622 @ref{Mensural contexts}.
5625 There is limited support for figured bass notation which came
5626 up during the baroque period.
5633 Here are all suptopics at a glance:
5636 * Ancient note heads::
5637 * Ancient accidentals::
5641 * Ancient time signatures::
5642 * Ancient articulations::
5646 * Gregorian Chant contexts::
5647 * Mensural contexts::
5652 @node Ancient note heads
5653 @subsection Ancient note heads
5658 For ancient notation, a note head style other than the @code{default}
5659 style may be chosen. This is accomplished by setting the @code{style}
5660 property of the NoteHead object to @code{baroque}, @code{neomensural}
5661 or @code{mensural}. The @code{baroque} style differs from the
5662 @code{default} style only in using a square shape for @code{\breve}
5663 note heads. The @code{neomensural} style differs from the
5664 @code{baroque} style in that it uses rhomboidal heads for whole notes
5665 and all smaller durations. Stems are centered on the note heads.
5666 This style is in particular useful when transcribing mensural music,
5667 e.g. for the incipit. The @code{mensural} style finally produces note
5668 heads that mimic the look of note heads in historic printings of the
5671 The following example demonstrates the @code{neomensural} style
5673 @lilypond[quote,fragment,raggedright]
5674 \set Score.skipBars = ##T
5675 \override NoteHead #'style = #'neomensural
5676 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
5679 When typesetting a piece in Gregorian Chant notation, the
5680 @internalsref{Gregorian_ligature_engraver} will automatically select
5681 the proper note heads, such there is no need to explicitly set the
5682 note head style. Still, the note head style can be set e.g.@: to
5683 @code{vaticana_punctum} to produce punctum neumes. Similarly, a
5684 @internalsref{Mensural_ligature_engraver} is used to automatically
5685 assemble mensural ligatures. See @ref{Ligatures} for how ligature
5690 Examples: @inputfileref{input/regression,note-head-style.ly} gives an
5691 overview over all available note head styles.
5694 @node Ancient accidentals
5695 @subsection Ancient accidentals
5700 Use the @code{style} property of grob @internalsref{Accidental} to
5701 select ancient accidentals. Supported styles are
5702 @code{mensural}, @code{vaticana}, @code{hufnagel} and @code{medicaea}.
5704 @lilypond[quote,raggedright,staffsize=26]
5712 { " " \musicglyph #"accidentals-vaticana-1"
5713 " " \musicglyph #"accidentals-vaticana0" }
5717 { " " \musicglyph #"accidentals-medicaea-1" }
5721 { " " \musicglyph #"accidentals-hufnagel-1" }
5725 { " " \musicglyph #"accidentals-mensural-1"
5726 " " \musicglyph #"accidentals-mensural1" }
5735 \remove "Bar_number_engraver"
5739 \remove "Clef_engraver"
5740 \remove "Key_engraver"
5741 \remove "Time_signature_engraver"
5742 \remove "Staff_symbol_engraver"
5743 minimumVerticalExtent = ##f
5749 As shown, not all accidentals are supported by each style. When
5750 trying to access an unsupported accidental, LilyPond will switch to a
5751 different style, as demonstrated in
5752 @inputfileref{input/test,ancient-accidentals.ly}.
5754 Similarly to local accidentals, the style of the key signature can be
5755 controlled by the @code{style} property of the
5756 @internalsref{KeySignature} grob.
5760 In this manual: @ref{Pitches}, @ref{Chromatic alterations} and
5761 @ref{Accidentals} give a general introduction into the use of
5762 accidentals. @ref{Key signature} gives a general introduction into
5763 the use of key signatures.
5765 Program reference: @internalsref{KeySignature}.
5767 Examples: @inputfileref{input/test,ancient-accidentals.ly}.
5770 @subsection Ancient rests
5775 Use the @code{style} property of grob @internalsref{Rest} to select
5776 ancient accidentals. Supported styles are @code{classical},
5777 @code{neomensural} and @code{mensural}. @code{classical} differs
5778 from the @code{default} style only in that the quarter rest looks like
5779 a horizontally mirrored 8th rest. The @code{neomensural} style suits
5780 well for e.g. the incipit of a transcribed mensural piece of music.
5781 The @code{mensural} style finally mimics the appearance of rests as
5782 in historic prints of the 16th century.
5784 The following example demonstrates the @code{neomensural} style
5786 @lilypond[quote,fragment,raggedright]
5787 \override Rest #'style = #'neomensural
5788 \set Score.skipBars = ##t
5789 r\longa r\breve r1 r2 r4 r8 r16
5792 There are no 32th and 64th rests specifically for the mensural or
5793 neo-mensural style. Instead, the rests from the default style will be
5794 taken. See @inputfileref{input/test,rests.ly} for a chart of all
5797 There are no rests in Gregorian Chant notation; instead, it uses
5802 In this manual: @ref{Rests} gives a general introduction into the use of rests.
5806 @subsection Ancient clefs
5811 LilyPond supports a variety of clefs, many of them ancient.
5813 The following table shows all ancient clefs that are supported via the
5814 @code{\clef} command. Some of the clefs use the same glyph, but
5815 differ only with respect to the line they are printed on. In such
5816 cases, a trailing number in the name is used to enumerate these clefs.
5817 Still, you can manually force a clef glyph to be typeset on an
5818 arbitrary line, as described in @ref{Clef}. The note printed to the
5819 right side of each clef in the example column denotes the @code{c'}
5820 with respect to that clef.
5822 @multitable @columnfractions .4 .4 .2
5825 @b{Description} @tab
5826 @b{Supported Clefs} @tab
5830 modern style mensural C clef @tab
5831 @code{neomensural-c1}, @code{neomensural-c2},
5832 @code{neomensural-c3}, @code{neomensural-c4} @tab
5833 @lilypond[fragment,quote,relative=1,notime]
5835 \clef "neomensural-c2" c
5839 petrucci style mensural C clefs, for use on different staff lines
5840 (the examples shows the 2nd staff line C clef).
5850 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5852 \clef "petrucci-c2" c
5856 petrucci style mensural F clef @tab
5857 @code{petrucci-f} @tab
5858 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5860 \clef "petrucci-f" c
5864 petrucci style mensural G clef @tab
5865 @code{petrucci-g} @tab
5866 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5868 \clef "petrucci-g" c
5872 historic style mensural C clef @tab
5873 @code{mensural-c1}, @code{mensural-c2}, @code{mensural-c3},
5874 @code{mensural-c4} @tab
5875 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5877 \clef "mensural-c2" c
5881 historic style mensural F clef @tab
5882 @code{mensural-f} @tab
5883 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5885 \clef "mensural-f" c
5889 historic style mensural G clef @tab
5890 @code{mensural-g} @tab
5891 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5893 \clef "mensural-g" c
5897 Editio Vaticana style do clef @tab
5898 @code{vaticana-do1}, @code{vaticana-do2}, @code{vaticana-do3} @tab
5899 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5900 \override Staff.StaffSymbol #'line-count = #4
5902 \clef "vaticana-do2" c
5906 Editio Vaticana style fa clef @tab
5907 @code{vaticana-fa1}, @code{vaticana-fa2} @tab
5908 @lilypond[quote,relative=1,notime,indent=0.0\mm,fragment]
5909 \override Staff.StaffSymbol #'line-count = #4
5911 \clef "vaticana-fa2" c
5915 Editio Medicaea style do clef @tab
5916 @code{medicaea-do1}, @code{medicaea-do2}, @code{medicaea-do3} @tab
5917 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5918 \override Staff.StaffSymbol #'line-count = #4
5920 \clef "medicaea-do2" c
5924 Editio Medicaea style fa clef @tab
5925 @code{medicaea-fa1}, @code{medicaea-fa2} @tab
5926 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5927 \override Staff.StaffSymbol #'line-count = #4
5929 \clef "medicaea-fa2" c
5933 historic style hufnagel do clef @tab
5934 @code{hufnagel-do1}, @code{hufnagel-do2}, @code{hufnagel-do3} @tab
5935 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5936 \override Staff.StaffSymbol #'line-count = #4
5938 \clef "hufnagel-do2" c
5942 historic style hufnagel fa clef @tab
5943 @code{hufnagel-fa1}, @code{hufnagel-fa2} @tab
5944 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5945 \override Staff.StaffSymbol #'line-count = #4
5947 \clef "hufnagel-fa2" c
5951 historic style hufnagel combined do/fa clef @tab
5952 @code{hufnagel-do-fa} @tab
5953 @lilypond[fragment,quote,relative=1,notime,indent=0.0\mm]
5954 \clef "hufnagel-do-fa" c
5961 @emph{Modern style} means ``as is typeset in contemporary editions of
5962 transcribed mensural music''.
5964 @emph{Petrucci style} means ``inspired by printings published by the
5965 famous engraver Petrucci (1466-1539)''.
5967 @emph{Historic style} means ``as was typeset or written in historic
5968 editions (other than those of Petrucci)''.
5970 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
5972 Petrucci used C clefs with differently balanced left-side vertical
5973 beams, depending on which staff line it is printed.
5977 In this manual: see @ref{Clef}.
5981 The mensural g clef is mapped to the Petrucci g clef.
5986 @subsection Ancient flags
5991 Use the @code{flag-style} property of grob @internalsref{Stem} to
5992 select ancient flags. Besides the @code{default} flag style,
5993 only @code{mensural} style is supported
5995 @lilypond[quote,fragment,raggedright,verbatim]
5996 \override Stem #'flag-style = #'mensural
5997 \override Stem #'thickness = #1.0
5998 \override NoteHead #'style = #'mensural
6000 c'8 d'8 e'8 f'8 c'16 d'16 e'16 f'16 c'32 d'32 e'32 f'32 s8
6001 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
6004 Note that the innermost flare of each mensural flag always is
6005 vertically aligned with a staff line.
6007 There is no particular flag style for neo-mensural notation. Hence,
6008 when typesetting the incipit of a transcribed piece of mensural
6009 music, the default flag style should be used. There are no flags in
6010 Gregorian Chant notation.
6014 The attachment of ancient flags to stems is slightly off due to a
6015 change in early 2.3.x.
6017 Vertically aligning each flag with a staff line assumes that stems
6018 always end either exactly on or exactly in the middle between two
6019 staff lines. This may not always be true when using advanced layout
6020 features of classical notation (which however are typically out of
6021 scope for mensural notation).
6023 @node Ancient time signatures
6024 @subsection Ancient time signatures
6026 @cindex time signatures
6029 There is limited support for mensural time signatures. The
6030 glyphs are hard-wired to particular time fractions. In other words,
6031 to get a particular mensural signature glyph with the @code{\time n/m}
6032 command, @code{n} and @code{m} have to be chosen according to the
6041 \remove Staff_symbol_engraver
6042 \remove Clef_engraver
6043 \remove Time_signature_engraver
6046 \set Score.timing = ##f
6047 \set Score.barAlways = ##t
6048 s_\markup { "$\\backslash$time 4/4" }
6049 ^\markup { " " \musicglyph #"timesig-neomensural4/4" }
6051 s_\markup { "$\\backslash$time 2/2" }
6052 ^\markup { " " \musicglyph #"timesig-neomensural2/2" }
6054 s_\markup { "$\\backslash$time 6/4" }
6055 ^\markup { " " \musicglyph #"timesig-neomensural6/4" }
6057 s_\markup { "$\\backslash$time 6/8" }
6058 ^\markup { " " \musicglyph #"timesig-neomensural6/8" }
6060 s_\markup { "$\\backslash$time 3/2" }
6061 ^\markup { " " \musicglyph #"timesig-neomensural3/2" }
6063 s_\markup { "$\\backslash$time 3/4" }
6064 ^\markup { " " \musicglyph #"timesig-neomensural3/4" }
6066 s_\markup { "$\\backslash$time 9/4" }
6067 ^\markup { " " \musicglyph #"timesig-neomensural9/4" }
6069 s_\markup { "$\\backslash$time 9/8" }
6070 ^\markup { " " \musicglyph #"timesig-neomensural9/8" }
6072 s_\markup { "$\\backslash$time 4/8" }
6073 ^\markup { " " \musicglyph #"timesig-neomensural4/8" }
6075 s_\markup { "$\\backslash$time 2/4" }
6076 ^\markup { " " \musicglyph #"timesig-neomensural2/4" }
6081 Use the @code{style} property of grob @internalsref{TimeSignature} to
6082 select ancient time signatures. Supported styles are
6083 @code{neomensural} and @code{mensural}. The above table uses the
6084 @code{neomensural} style. This style is appropriate for the
6085 incipit of transcriptions of mensural pieces. The @code{mensural}
6086 style mimics the look of historical printings of the 16th century.
6088 The following examples shows the differences in style,
6090 @lilypond[raggedright]
6093 c1^\markup { \hspace #-2.0 \typewriter default }
6095 \override Staff.TimeSignature #'style = #'numbered
6097 c1^\markup { \hspace #-2.0 \typewriter numbered }
6099 \override Staff.TimeSignature #'style = #'mensural
6101 c1^\markup { \hspace #-2.0 \typewriter mensural }
6103 \override Staff.TimeSignature #'style = #'neomensural
6105 c1^\markup { \hspace #-2.0 \typewriter neomensural }
6106 \override Staff.TimeSignature #'style = #'single-digit
6108 c1^\markup { \hspace #-2.0 \typewriter single-digit }
6114 This manual: @ref{Time signature} gives a general introduction into
6115 the use of time signatures.
6119 Ratios of note durations do not change with the time signature. For
6120 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
6121 be made by hand, by setting
6124 breveTP = #(ly:make-duration -1 0 3 2)
6130 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
6132 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
6133 addressable with @code{\time}. Use a @code{\markup} instead
6135 @node Ancient articulations
6136 @subsection Ancient articulations
6138 @cindex articulations
6140 In addition to the standard articulation signs described in section
6141 @ref{Articulations}, articulation signs for ancient notation are
6142 provided. These are specifically designed for use with notation in
6143 Editio Vaticana style.
6145 @lilypond[quote,raggedright,verbatim,noindent]
6146 \include "gregorian-init.ly"
6148 \context VaticanaVoice {
6149 \override TextScript #'font-family = #'typewriter
6150 \override TextScript #'font-shape = #'upright
6151 \override Script #'padding = #-0.1
6153 a4\circulus_"circulus" s1
6154 a4\semicirculus_"semicirculus" s1 s
6155 a4\accentus_"accentus" s1
6156 \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
6161 % Prepare TextSpanner for \episem{Initium|Finis} use.
6162 \override TextSpanner #'style = #'line
6163 \override TextSpanner #'edge-height = #'(0 . 0)
6164 \override TextSpanner #'padding = #0.5
6165 \override TextSpanner #'enclose-bounds = #1
6166 \override TextSpanner #'edge-text = #'("" . "")
6174 The line @code{\override Script #'padding = #-0.1} is required to
6175 force the articulation signs being placed vertically tightly to the
6176 correpsonding note heads.
6180 @subsection Custodes
6185 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
6186 symbol that appears at the end of a staff. It anticipates the pitch
6187 of the first note(s) of the following line thus helping the performer
6188 to manage line breaks during performance.
6190 Custodes were frequently used in music notation until the 17th
6191 century. Nowadays, they have survived only in a few particular forms
6192 of musical notation such as contemporary editions of Gregorian chant
6193 like the @emph{editio vaticana}. There are different custos glyphs
6194 used in different flavors of notational style.
6196 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
6197 @internalsref{Staff} context when declaring the @code{\paper} block,
6198 as shown in the following example
6204 \consists Custos_engraver
6205 Custos \override #'style = #'mensural
6210 The result looks like this
6212 @lilypond[quote,raggedright]
6216 \override Staff.Custos #'style = #'mensural
6223 \consists Custos_engraver
6229 The custos glyph is selected by the @code{style} property. The styles
6230 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel} and
6231 @code{mensural}. They are demonstrated in the following fragment
6235 \new Lyrics \lyricmode {
6238 \typewriter "vaticana"
6239 { " " \musicglyph #"custodes-vaticana-u0" }
6242 \typewriter "medicaea"
6243 { " " \musicglyph #"custodes-medicaea-u0" }
6247 \typewriter "hufnagel"
6248 { " " \musicglyph #"custodes-hufnagel-u0" }
6252 \typewriter "mensural"
6253 { " " \musicglyph #"custodes-mensural-u0" }
6265 Program reference: @internalsref{Custos}.
6267 Examples: @inputfileref{input/regression,custos.ly}.
6271 @subsection Divisiones
6277 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
6278 `division') is a staff context symbol that is used to structure
6279 Gregorian music into phrases and sections. The musical meaning of
6280 @emph{divisio minima}, @emph{divisio maior} and @emph{divisio maxima}
6281 can be characterized as short, medium and long pause, somewhat like
6282 the breathmarks from @ref{Breath marks}. The @emph{finalis} sign not
6283 only marks the end of a chant, but is also frequently used within a
6284 single antiphonal/responsorial chant to mark the end of each section.
6287 To use divisiones, include the file @code{gregorian-init.ly}. It
6288 contains definitions that you can apply by just inserting
6289 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
6290 and @code{\finalis} at proper places in the input. Some editions use
6291 @emph{virgula} or @emph{caesura} instead of divisio minima.
6292 Therefore, @code{gregorian-init.ly} also defines @code{\virgula} and
6295 @lilypondfile[quote,raggedright]{divisiones.ly}
6299 @cindex @code{\virgula}
6301 @cindex @code{\caesura}
6303 @cindex @code{\divisioMinima}
6304 @code{\divisioMinima},
6305 @cindex @code{\divisioMaior}
6306 @code{\divisioMaior},
6307 @cindex @code{\divisioMaxima}
6308 @code{\divisioMaxima},
6309 @cindex @code{\finalis}
6314 In this manual: @ref{Breath marks}.
6316 Program reference: @internalsref{BreathingSign}, @internalsref{BreathingSignEvent}.
6318 Examples: @inputfileref{input/test,divisiones.ly}.
6321 @subsection Ligatures
6325 @c TODO: Should double check if I recalled things correctly when I wrote
6326 @c down the following paragraph by heart.
6328 A ligature is a graphical symbol that represents at least two distinct
6329 notes. Ligatures originally appeared in the manuscripts of Gregorian
6330 chant notation to denote ascending or descending sequences of notes.
6332 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
6333 Some ligature styles may need additional input syntax specific for
6334 this particular type of ligature. By default, the
6335 @internalsref{LigatureBracket} engraver just puts a square bracket
6338 @lilypond[quote,raggedright,verbatim]
6346 To select a specific style of ligatures, a proper ligature engraver
6347 has to be added to the @internalsref{Voice} context, as explained in
6348 the following subsections. Only white mensural ligatures
6349 are supported with certain limitations.
6355 Ligatures need special spacing that has not yet been implemented. As
6356 a result, there is too much space between ligatures most of the time,
6357 and line breaking often is unsatisfactory. Also, lyrics do not
6358 correctly align with ligatures.
6360 Accidentals must not be printed within a ligature, but instead need to
6361 be collected and printed in front of it.
6363 Augmentum dots within ligatures are not handled correctly.
6367 * White mensural ligatures::
6368 * Gregorian square neumes ligatures::
6371 @node White mensural ligatures
6372 @subsubsection White mensural ligatures
6374 @cindex Mensural ligatures
6375 @cindex White mensural ligatures
6377 There is limited support for white mensural ligatures.
6379 To engrave white mensural ligatures, in the paper block the
6380 @internalsref{Mensural_ligature_engraver} has to be put into the
6381 @internalsref{Voice} context, and remove the
6382 @internalsref{Ligature_bracket_engraver}
6388 \remove Ligature_bracket_engraver
6389 \consists Mensural_ligature_engraver
6394 There is no additional input language to describe the shape of a
6395 white mensural ligature. The shape is rather determined solely from
6396 the pitch and duration of the enclosed notes. While this approach may
6397 take a new user a while to get accustomed, it has the great advantage
6398 that the full musical information of the ligature is known internally.
6399 This is not only required for correct MIDI output, but also allows for
6400 automatic transcription of the ligatures.
6405 \set Score.timing = ##f
6406 \set Score.defaultBarType = "empty"
6407 \override NoteHead #'style = #'neomensural
6408 \override Staff.TimeSignature #'style = #'neomensural
6410 \[ g\longa c\breve a\breve f\breve d'\longa \]
6412 \[ e1 f1 a\breve g\longa \]
6414 @lilypond[quote,raggedright]
6417 \set Score.timing = ##f
6418 \set Score.defaultBarType = "empty"
6419 \override NoteHead #'style = #'neomensural
6420 \override Staff.TimeSignature #'style = #'neomensural
6422 \[ g\longa c\breve a\breve f\breve d'\longa \]
6424 \[ e1 f1 a\breve g\longa \]
6429 \remove Ligature_bracket_engraver
6430 \consists Mensural_ligature_engraver
6436 Without replacing @internalsref{Ligature_bracket_engraver} with
6437 @internalsref{Mensural_ligature_engraver}, the same music transcribes
6440 @lilypond[quote,raggedright]
6442 \set Score.timing = ##f
6443 \set Score.defaultBarType = "empty"
6444 \override NoteHead #'style = #'neomensural
6445 \override Staff.TimeSignature #'style = #'neomensural
6447 \[ g\longa c\breve a\breve f\breve d'\longa \]
6449 \[ e1 f1 a\breve g\longa \]
6455 The implementation is experimental. It may output strange warnings,
6456 incorrect results, and might even crash on more complex ligatures.
6458 @node Gregorian square neumes ligatures
6459 @subsubsection Gregorian square neumes ligatures
6461 @cindex Square neumes ligatures
6462 @cindex Gregorian square neumes ligatures
6464 There is limited support for Gregorian square neumes notation
6465 (following the style of the Editio Vaticana). Core ligatures can
6466 already be typeset, but essential issues for serious typesetting are
6467 still lacking, such as (among others) horizontal alignment of multiple
6468 ligatures, lyrics alignment and proper accidentals handling.
6471 The following table contains the extended neumes table of the 2nd
6472 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
6473 1983 by the monks of Solesmes.
6475 @multitable @columnfractions .4 .2 .2 .2
6478 @b{Neuma aut@*Neumarum Elementa} @tab
6479 @b{Figurae@*Rectae} @tab
6480 @b{Figurae@*Liquescentes Auctae} @tab
6481 @b{Figurae@*Liquescentes Deminutae}
6483 @c TODO: \paper block is identical in all of the below examples.
6484 @c Therefore, it should somehow be included rather than duplicated all
6487 @c why not make identifiers in ly/engraver-init.ly? --hwn
6489 @c Because it's just used to typeset plain notes without
6490 @c a staff for demonstration purposes rather than something
6491 @c special of Gregorian chant notation. --jr
6496 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.5\cm]
6497 \include "gregorian-init.ly"
6502 \noBreak s^\markup {"a"} \noBreak
6504 % Punctum Inclinatum
6506 \noBreak s^\markup {"b"}
6508 \paper { \neumeDemoPaper }}
6511 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.5\cm]
6512 \include "gregorian-init.ly"
6515 % Punctum Auctum Ascendens
6516 \[ \auctum \ascendens b \]
6517 \noBreak s^\markup {"c"} \noBreak
6519 % Punctum Auctum Descendens
6520 \[ \auctum \descendens b \]
6521 \noBreak s^\markup {"d"} \noBreak
6523 % Punctum Inclinatum Auctum
6524 \[ \inclinatum \auctum b \]
6525 \noBreak s^\markup {"e"}
6527 \paper { \neumeDemoPaper }}
6530 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6531 \include "gregorian-init.ly"
6534 % Punctum Inclinatum Parvum
6535 \[ \inclinatum \deminutum b \]
6536 \noBreak s^\markup {"f"}
6538 \paper { \neumeDemoPaper }}
6544 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6545 \include "gregorian-init.ly"
6550 \noBreak s^\markup {"g"}
6552 \paper { \neumeDemoPaper }}
6558 @code{3. Apostropha vel Stropha}
6560 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6561 \include "gregorian-init.ly"
6566 \noBreak s^\markup {"h"}
6568 \paper { \neumeDemoPaper }}
6571 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6572 \include "gregorian-init.ly"
6576 \[ \stropha \auctum b \]
6577 \noBreak s^\markup {"i"}
6579 \paper { \neumeDemoPaper }}
6586 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6587 \include "gregorian-init.ly"
6592 \noBreak s^\markup {"j"}
6594 \paper { \neumeDemoPaper }}
6600 @code{5. Clivis vel Flexa}
6602 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6603 \include "gregorian-init.ly"
6610 \paper { \neumeDemoPaper }}
6613 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.0\cm]
6614 \include "gregorian-init.ly"
6617 % Clivis Aucta Descendens
6618 \[ b \flexa \auctum \descendens g \]
6619 \noBreak s^\markup {"l"} \noBreak
6621 % Clivis Aucta Ascendens
6622 \[ b \flexa \auctum \ascendens g \]
6623 \noBreak s^\markup {"m"}
6625 \paper { \neumeDemoPaper }}
6628 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6629 \include "gregorian-init.ly"
6633 \[ b \flexa \deminutum g \]
6636 \paper { \neumeDemoPaper }}
6640 @code{6. Podatus vel Pes}
6642 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6643 \include "gregorian-init.ly"
6650 \paper { \neumeDemoPaper }}
6653 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=2.0\cm]
6654 \include "gregorian-init.ly"
6657 % Pes Auctus Descendens
6658 \[ g \pes \auctum \descendens b \]
6659 \noBreak s^\markup {"p"} \noBreak
6661 % Pes Auctus Ascendens
6662 \[ g \pes \auctum \ascendens b \]
6663 \noBreak s^\markup {"q"}
6665 \paper { \neumeDemoPaper }}
6668 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6669 \include "gregorian-init.ly"
6673 \[ g \pes \deminutum b \]
6676 \paper { \neumeDemoPaper }}
6680 @code{7. Pes Quassus}
6682 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6683 \include "gregorian-init.ly"
6687 \[ \oriscus g \pes \virga b \]
6690 \paper { \neumeDemoPaper }}
6693 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6694 \include "gregorian-init.ly"
6697 % Pes Quassus Auctus Descendens
6698 \[ \oriscus g \pes \auctum \descendens b \]
6701 \paper { \neumeDemoPaper }}
6706 @code{8. Quilisma Pes}
6708 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6709 \include "gregorian-init.ly"
6713 \[ \quilisma g \pes b \]
6716 \paper { \neumeDemoPaper }}
6719 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6720 \include "gregorian-init.ly"
6723 % Quilisma Pes Auctus Descendens
6724 \[ \quilisma g \pes \auctum \descendens b \]
6727 \paper { \neumeDemoPaper }}
6732 @code{9. Podatus Initio Debilis}
6734 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6735 \include "gregorian-init.ly"
6738 % Pes Initio Debilis
6739 \[ \deminutum g \pes b \]
6742 \paper { \neumeDemoPaper }}
6745 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6746 \include "gregorian-init.ly"
6749 % Pes Auctus Descendens Initio Debilis
6750 \[ \deminutum g \pes \auctum \descendens b \]
6753 \paper { \neumeDemoPaper }}
6760 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6761 \include "gregorian-init.ly"
6765 \[ a \pes b \flexa g \]
6768 \paper { \neumeDemoPaper }}
6771 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6772 \include "gregorian-init.ly"
6775 % Torculus Auctus Descendens
6776 \[ a \pes b \flexa \auctum \descendens g \]
6779 \paper { \neumeDemoPaper }}
6782 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6783 \include "gregorian-init.ly"
6786 % Torculus Deminutus
6787 \[ a \pes b \flexa \deminutum g \]
6790 \paper { \neumeDemoPaper }}
6794 @code{11. Torculus Initio Debilis}
6796 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6797 \include "gregorian-init.ly"
6800 % Torculus Initio Debilis
6801 \[ \deminutum a \pes b \flexa g \]
6804 \paper { \neumeDemoPaper }}
6807 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6808 \include "gregorian-init.ly"
6811 % Torculus Auctus Descendens Initio Debilis
6812 \[ \deminutum a \pes b \flexa \auctum \descendens g \]
6815 \paper { \neumeDemoPaper }}
6818 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6819 \include "gregorian-init.ly"
6822 % Torculus Deminutus Initio Debilis
6823 \[ \deminutum a \pes b \flexa \deminutum g \]
6826 \paper { \neumeDemoPaper }}
6830 @code{12. Porrectus}
6832 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6833 \include "gregorian-init.ly"
6837 \[ a \flexa g \pes b \]
6840 \paper { \neumeDemoPaper }}
6843 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6844 \include "gregorian-init.ly"
6847 % Porrectus Auctus Descendens
6848 \[ a \flexa g \pes \auctum \descendens b \]
6851 \paper { \neumeDemoPaper }}
6854 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6855 \include "gregorian-init.ly"
6858 % Porrectus Deminutus
6859 \[ a \flexa g \pes \deminutum b \]
6862 \paper { \neumeDemoPaper }}
6868 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6869 \include "gregorian-init.ly"
6873 \[ \virga b \inclinatum a \inclinatum g \]
6876 \paper { \neumeDemoPaper }
6880 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6881 \include "gregorian-init.ly"
6885 \[ \virga b \inclinatum a \inclinatum \auctum g \]
6888 \paper { \neumeDemoPaper }}
6891 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6892 \include "gregorian-init.ly"
6895 % Climacus Deminutus
6896 \[ \virga b \inclinatum a \inclinatum \deminutum g \]
6899 \paper { \neumeDemoPaper }}
6903 @code{14. Scandicus}
6905 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6906 \include "gregorian-init.ly"
6910 \[ g \pes a \virga b \]
6913 \paper { \neumeDemoPaper }}
6916 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6917 \include "gregorian-init.ly"
6920 % Scandicus Auctus Descendens
6921 \[ g \pes a \pes \auctum \descendens b \]
6924 \paper { \neumeDemoPaper }}
6927 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6928 \include "gregorian-init.ly"
6931 % Scandicus Deminutus
6932 \[ g \pes a \pes \deminutum b \]
6935 \paper { \neumeDemoPaper }}
6941 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6942 \include "gregorian-init.ly"
6946 \[ g \oriscus a \pes \virga b \]
6949 \paper { \neumeDemoPaper }}
6952 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6953 \include "gregorian-init.ly"
6956 % Salicus Auctus Descendens
6957 \[ g \oriscus a \pes \auctum \descendens b \]
6960 \paper { \neumeDemoPaper }}
6967 @lilypond[quote,noindent,staffsize=26,nofragment,linewidth=1.0\cm]
6968 \include "gregorian-init.ly"
6972 \[ \stropha b \stropha b \stropha a \]
6975 \paper { \neumeDemoPaper }
6984 Unlike most other neumes notation systems, the input language for
6985 neumes does not reflect the typographical appearance, but is designed
6986 to focus on musical meaning. For example, @code{\[ a \pes b
6987 \flexa g \]} produces a Torculus consisting of three Punctum heads,
6988 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
6989 curved flexa shape and only a single Punctum head. There is no
6990 command to explicitly typeset the curved flexa shape; the decision of
6991 when to typeset a curved flexa shape is based on the musical
6992 input. The idea of this approach is to separate the musical aspects
6993 of the input from the notation style of the output. This way, the
6994 same input can be reused to typeset the same music in a different
6995 style of Gregorian chant notation.
6997 The following table shows the code fragments that produce the
6998 ligatures in the above neumes table. The letter in the first column
6999 in each line of the below table indicates to which ligature in the
7000 above table it refers. The second column gives the name of the
7001 ligature. The third column shows the code fragment that produces this
7002 ligature, using @code{g}, @code{a} and @code{b} as example pitches.
7004 @multitable @columnfractions .1 .4 .5
7018 Punctum Inclinatum @tab
7019 @code{\[ \inclinatum b \]}
7023 Punctum Auctum Ascendens @tab
7024 @code{\[ \auctum \ascendens b \]}
7028 Punctum Auctum Descendens @tab
7029 @code{\[ \auctum \descendens b \]}
7033 Punctum Inclinatum Auctum @tab
7034 @code{\[ \inclinatum \auctum b \]}
7038 Punctum Inclinatum Parvum @tab
7039 @code{\[ \inclinatum \deminutum b \]}
7044 @code{\[ \virga b \]}
7049 @code{\[ \stropha b \]}
7054 @code{\[ \stropha \auctum b \]}
7059 @code{\[ \oriscus b \]}
7063 Clivis vel Flexa @tab
7064 @code{\[ b \flexa g \]}
7068 Clivis Aucta Descendens @tab
7069 @code{\[ b \flexa \auctum \descendens g \]}
7073 Clivis Aucta Ascendens @tab
7074 @code{\[ b \flexa \auctum \ascendens g \]}
7079 @code{\[ b \flexa \deminutum g \]}
7083 Podatus vel Pes @tab
7084 @code{\[ g \pes b \]}
7088 Pes Auctus Descendens @tab
7089 @code{\[ g \pes \auctum \descendens b \]}
7093 Pes Auctus Ascendens @tab
7094 @code{\[ g \pes \auctum \ascendens b \]}
7099 @code{\[ g \pes \deminutum b \]}
7104 @code{\[ \oriscus g \pes \virga b \]}
7108 Pes Quassus Auctus Descendens @tab
7109 @code{\[ \oriscus g \pes \auctum \descendens b \]}
7114 @code{\[ \quilisma g \pes b \]}
7118 Quilisma Pes Auctus Descendens @tab
7119 @code{\[ \quilisma g \pes \auctum \descendens b \]}
7123 Pes Initio Debilis @tab
7124 @code{\[ \deminutum g \pes b \]}
7128 Pes Auctus Descendens Initio Debilis @tab
7129 @code{\[ \deminutum g \pes \auctum \descendens b \]}
7134 @code{\[ a \pes b \flexa g \]}
7138 Torculus Auctus Descendens @tab
7139 @code{\[ a \pes b \flexa \auctum \descendens g \]}
7143 Torculus Deminutus @tab
7144 @code{\[ a \pes b \flexa \deminutum g \]}
7148 Torculus Initio Debilis @tab
7149 @code{\[ \deminutum a \pes b \flexa g \]}
7153 Torculus Auctus Descendens Initio Debilis @tab
7154 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
7158 Torculus Deminutus Initio Debilis @tab
7159 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
7164 @code{\[ a \flexa g \pes b \]}
7168 Porrectus Auctus Descendens @tab
7169 @code{\[ a \flexa g \pes \auctum \descendens b \]}
7173 Porrectus Deminutus @tab
7174 @code{\[ a \flexa g \pes \deminutum b \]}
7179 @code{\[ \virga b \inclinatum a \inclinatum g \]}
7183 Climacus Auctus @tab
7184 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
7188 Climacus Deminutus @tab
7189 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
7194 @code{\[ g \pes a \virga b \]}
7198 Scandicus Auctus Descendens @tab
7199 @code{\[ g \pes a \pes \auctum \descendens b \]}
7203 Scandicus Deminutus @tab
7204 @code{\[ g \pes a \pes \deminutum b \]}
7209 @code{\[ g \oriscus a \pes \virga b \]}
7213 Salicus Auctus Descendens @tab
7214 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
7219 @code{\[ \stropha b \stropha b \stropha a \]}
7225 The following head prefixes are supported
7227 @cindex @code{\virga}
7229 @cindex @code{\stropha}
7231 @cindex @code{\inclinatum}
7233 @cindex @code{\auctum}
7235 @cindex @code{\descendens}
7237 @cindex @code{\ascendens}
7239 @cindex @code{\oriscus}
7241 @cindex @code{\quilisma}
7243 @cindex @code{\deminutum}
7246 Head prefixes can be accumulated, though restrictions apply. For
7247 example, either @code{\descendens} or @code{\ascendens} can be applied
7248 to a head, but not both to the same head.
7251 @cindex @code{\flexa}
7252 Two adjacent heads can be tied together with the @code{\pes} and
7253 @code{\flexa} infix commands for a rising and falling line of melody,
7258 @node Gregorian Chant contexts
7259 @subsection Gregorian Chant contexts
7261 @cindex VaticanaVoiceContext
7262 @cindex VaticanaStaffContext
7264 The predefined @code{VaticanaVoiceContext} and
7265 @code{VaticanaStaffContext} can be used to engrave a piece of
7266 Gregorian Chant in the style of the Editio Vaticana. These contexts
7267 initialize all relevant context properties and grob properties to
7268 proper values, so you can immediately go ahead entering the chant, as
7269 the following excerpt demonstrates
7271 @lilypond[quote,raggedright,verbatim,noindent]
7272 \include "gregorian-init.ly"
7275 \context VaticanaVoice = "cantus" {
7276 \override Score.BarNumber #'transparent = ##t {
7277 \[ c'\melisma c' \flexa a \]
7278 \[ a \flexa \deminutum g\melismaEnd \]
7280 \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
7281 c' \divisioMinima \break
7282 \[ c'\melisma c' \flexa a \]
7283 \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
7286 \lyricsto "cantus" \new Lyrics {
7287 San- ctus, San- ctus, San- ctus
7294 @node Mensural contexts
7295 @subsection Mensural contexts
7297 @cindex MensuralVoiceContext
7298 @cindex MensuralStaffContext
7300 The predefined @code{MensuralVoiceContext} and
7301 @code{MensuralStaffContext} can be used to engrave a piece in mensural
7302 style. These contexts initialize all relevant context properties and
7303 grob properties to proper values, so you can immediately go ahead
7304 entering the chant, as the following excerpt demonstrates
7306 @lilypond[quote,raggedright,verbatim,noindent]
7309 \context MensuralVoice = "discantus" \transpose c c' {
7310 \override Score.BarNumber #'transparent = ##t {
7311 c'1\melisma bes a g\melismaEnd
7313 \[ f1\melisma a c'\breve d'\melismaEnd \]
7315 c'\breve\melisma a1 g1\melismaEnd
7316 fis\longa^\signumcongruentiae
7319 \lyricsto "discantus" \new Lyrics {
7320 San -- ctus, San -- ctus, San -- ctus
7328 @subsection Figured bass
7330 @cindex Basso continuo
7332 @c TODO: musicological blurb about FB
7335 LilyPond has limited support for figured bass
7337 @lilypond[quote,verbatim,fragment]
7339 \context Voice { \clef bass dis4 c d ais }
7340 \context FiguredBass \figuremode {
7341 < 6 >4 < 7 >8 < 6+ [_!] >
7347 The support for figured bass consists of two parts: there is an input
7348 mode, introduced by @code{\figuremode}, where you can enter bass figures
7349 as numbers, and there is a context called @internalsref{FiguredBass} that
7350 takes care of making @internalsref{BassFigure} objects.
7352 In figures input mode, a group of bass figures is delimited by
7353 @code{<} and @code{>}. The duration is entered after the @code{>}
7357 @lilypond[quote,fragment]
7358 \context FiguredBass
7359 \figuremode { <4 6> }
7362 Accidentals are added when you append @code{-}, @code{!} and @code{+}
7368 @lilypond[quote,fragment]
7369 \context FiguredBass
7370 \figuremode { <4- 6+ 7!> }
7373 Spaces or dashes may be inserted by using @code{_}. Brackets are
7374 introduced with @code{[} and @code{]}
7379 @lilypond[quote,fragment]
7380 \context FiguredBass
7381 \figuremode { < [4 6] 8 [_! 12]> }
7384 Although the support for figured bass may superficially resemble chord
7385 support, it works much simpler. The @code{\figuremode} mode simply
7386 stores the numbers , and @internalsref{FiguredBass} context prints
7387 them as entered. There is no conversion to pitches, and no
7388 realizations of the bass are played in the MIDI file.
7390 Internally, the code produces markup texts. You can use any of the
7391 markup text properties to override formatting. For example, the
7392 vertical spacing of the figures may be set with @code{baseline-skip}.
7396 Program reference: @internalsref{BassFigureEvent} music, @internalsref{BassFigure} object,
7397 and @internalsref{FiguredBass} context.
7401 Slash notation for alterations is not supported.
7403 @node Contemporary notation
7404 @section Contemporary notation
7406 In the 20th century, composers have greatly expanded the musical
7407 vocabulary. With this expansion, many innovations in musical notation
7408 have been tried. The book ``Music Notation in the 20th century'' by
7409 Kurt Stone gives a comprehensive overview (see @ref{Literature
7410 list}). In general, the use of new, innovative notation makes a piece
7411 harder to understand and perform and its use should therefore be
7412 avoided. For this reason, support for contemporary notation in
7413 LilyPond is limited.
7417 * Polymetric notation::
7419 * Special fermatas::
7423 @node Polymetric notation
7424 @subsection Polymetric notation
7426 Double time signatures are not supported explicitly, but they can be
7427 faked. In the next example, the markup for the time signature is
7428 created with a markup text. This markup text is inserted in the
7429 @internalsref{TimeSignature} grob.
7431 @lilypond[verbatim,raggedright]
7437 \musicglyph #"scripts-stopped"
7438 \bracket \column < "5" "8" >
7443 \override Staff.TimeSignature #'print-function = #Text_interface::print
7444 \override Staff.TimeSignature #'text = #tsMarkup
7446 c'2 \bar ":" c'4 c'4.
7450 Each staff can also have its own time signature. This is done by
7451 moving the @internalsref{Timing_engraver} to @internalsref{Staff}
7458 \remove "Timing_engraver"
7462 \consists "Timing_engraver"
7468 Now, each staff has its own time signature.
7482 c4. c8 c c c4. c8 c c
7487 @lilypond[raggedright]
7491 \remove "Timing_engraver"
7495 \consists "Timing_engraver"
7511 c4. c8 c c c4. c8 c c
7517 A different form of polymetric notation is where note lengths have
7518 different values across staves.
7520 This notation can be created by setting a common time signature for
7521 each staff but replacing it manually using
7522 @code{timeSignatureFraction} to the desired fraction. Then the printed
7523 durations in each staff are scaled to the common time signature.
7524 The latter is done with @code{\compressmusic}, which is similar to
7525 @code{\times}, but does not create a tuplet bracket.
7528 In this example, music with the time signatures of 3/4, 9/8 and 10/8 are
7529 used in parallel. In the second staff, shown durations are multiplied by
7530 2/3, so that 2/3 * 9/8 = 3/4, and in the third staff, shown durations are
7531 multiplied by 3/5, so that 3/5 * 10/8 = 3/4.
7533 @lilypond[raggedright,verbatim]
7541 \set Staff.timeSignatureFraction = #'(9 . 8)
7542 \compressmusic #'(2 . 3)
7543 \repeat unfold 6 { c8[ c c] }
7547 \set Staff.timeSignatureFraction = #'(10 . 8)
7548 \compressmusic #'(3 . 5)
7549 { \repeat unfold 2 { c8[ c c] }
7550 \repeat unfold 2 { c8[ c] }
7551 | c4. c4. \times 2/3 { c8 c c } c4 }
7561 When using different time signatures in parallel, the spacing is
7562 aligned vertically, but bar lines distort the regular spacing.
7567 @subsection Clusters
7571 A cluster indicates a continuous range of pitches to be played. They
7572 can be denoted as the envelope of a set of notes. They are entered by
7573 applying the function @code{makeClusters} to a sequence of
7576 @lilypond[quote,verbatim]
7578 \makeClusters { <c e > <b f'> }
7581 The following example (from
7582 @inputfileref{input/regression,cluster.ly}) shows what the result
7585 @lilypondfile[quote]{cluster.ly}
7587 Ordinary notes and clusters can be put together in the same staff,
7588 even simultaneously. In such a case no attempt is made to
7589 automatically avoid collisions between ordinary notes and clusters.
7593 Program reference: @internalsref{ClusterSpanner},
7594 @internalsref{ClusterSpannerBeacon},
7595 @internalsref{Cluster_spanner_engraver}, and
7596 @internalsref{ClusterNoteEvent}.
7598 Examples: @inputfileref{input/regression,cluster.ly}.
7602 Music expressions like @code{<< @{ g8 e8 @} a4 >>} are not printed
7603 accurately. Use @code{<g a>8 <e a>8} instead.
7607 @node Special fermatas
7608 @subsection Special fermatas
7610 @cindex fermatas, special
7612 In contemporary music notation, special fermata symbols denote breaks
7613 of differing lengths. The following fermatas are supported
7615 @lilypond[quote,raggedright]
7637 \context Lyrics \lyricmode {
7638 \override LyricText #'font-family = #'typewriter
7639 "shortfermata" "fermata" "longfermata" "verylongfermata"
7644 See @ref{Articulations} for general instructions how to apply scripts
7645 such as fermatas to notes.
7647 @node Feathered beams
7648 @subsection Feathered beams
7650 Feathered beams are not supported natively, but they can be faked by
7651 forcing two beams to overlap. Here is an example,
7653 @lilypond[raggedright]
7654 \relative \new Staff <<
7658 \once \override Voice.Beam #'positions = #'(0 . 0.5)
7663 \once \override Voice.Beam #'positions = #'(0 . -0.5)
7671 @node Educational use
7672 @section Educational use
7676 * Blank music paper::
7677 * Notation for excercises::
7678 * Easy Notation note heads::
7682 @subsection Balloon help
7684 Elements of notation can be marked and named with the help of a square
7685 balloon. The primary purpose of this feature is to explain notation.
7687 The following example demonstrates its use.
7689 @lilypond[quote,verbatim,fragment,raggedright,relative=2]
7692 #(add-balloon-text 'NoteHead "heads, or tails?"
7698 The function @code{add-balloon-text} takes the name of a grob, the
7699 label to print, and the position where to put the label relative to
7700 the object. In the above example, the text ``heads or tails?'' ends
7701 3 spaces below and 1 space to the right of the marked head.
7704 @cindex notation, explaining
7708 Program reference: @internalsref{text-balloon-interface}.
7710 Examples: @inputfileref{input/regression,balloon.ly}.
7715 @node Blank music paper
7716 @subsection Blank music paper
7718 A blank music paper can be produced also by using invisible notes, and
7719 removing @code{Bar_number_engraver}.
7724 \repeat unfold 2 % Change this for more lines.
7729 \override TimeSignature #'transparent = ##t
7730 defaultBarType = #""
7731 \remove Bar_number_engraver
7733 \context Staff \emptymusic
7734 \context TabStaff \emptymusic
7739 @node Notation for excercises
7740 @subsection Notation for excercises
7744 Invisible (or transparent) notes can be useful, when weird tricks are
7745 needed; especially, a slur cannot be attach to a rest or spacer rest.
7749 blanknotes = { \override NoteHead #'transparent = ##t
7750 \override Stem #'transparent = ##t }
7751 unblanknotes = { \revert NoteHead #'transparent
7752 \revert Stem #'transparent }
7757 \blanknotes e4 f4 \unblanknotes
7763 @node Easy Notation note heads
7764 @subsection Easy Notation note heads
7766 @cindex easy notation
7769 The `easy play' note head includes a note name inside the head. It is
7770 used in music for beginners
7772 @lilypond[quote,raggedright,verbatim,fragment,staffsize=26]
7777 The command @code{\setEasyHeads} overrides settings for the
7778 @internalsref{NoteHead} object. To make the letters readable, it has
7779 to be printed in a large font size. To print with a larger font, see
7780 @ref{Setting global staff size}.
7784 @cindex @code{\setEasyHeads}
7785 @code{\setEasyHeads}