]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/user/refman.itely
*** empty log message ***
[lilypond.git] / Documentation / user / refman.itely
index 66eef429e60c3d2313e79a61c2f604eaa3df8308..5b5f4df1c58dcc4eff197580794c4a0482a9ab2a 100644 (file)
@@ -112,7 +112,7 @@ Half-flats and half-sharps are formed by adding @code{-eh} and
 @cindex quarter tones
 @cindex semi-flats, semi-sharps
 
-@lilypond[verbatim,relative 2]
+@lilypond[verbatim,relative=2]
   ceses4
   ceseh
   ces
@@ -185,7 +185,7 @@ can be forced by adding an exclamation mark @code{!}
 after the pitch.  A cautionary accidental
 @cindex cautionary accidental
 @cindex parenthesized accidental
-(an accidental within parentheses) can be obtained by adding the
+(i.e. an accidental within parentheses) can be obtained by adding the
 question mark `@code{?}' after the pitch:
 
 @lilypond[fragment,verbatim]
@@ -213,7 +213,7 @@ articulations, just like simple notes.
 
 Rests are entered like notes, with the note name @code{r}:
 
-@lilypond[singleline,verbatim]
+@lilypond[raggedright,verbatim]
 r1 r2 r4 r8
 @end lilypond
 
@@ -227,7 +227,7 @@ note with the @code{\rest} keyword appended. This makes manual
 formatting in polyphonic music easier.  Rest collision testing will
 leave these rests alone:
 
-@lilypond[singleline,verbatim]
+@lilypond[raggedright,verbatim]
 a'4\rest d'4\rest
 @end lilypond
 
@@ -246,14 +246,14 @@ Internals: @internalsref{RestEvent}, and @internalsref{Rest}.
 An invisible rest (also called a `skip') can be entered like a note
 with note name `@code{s}' or with @code{\skip @var{duration}}:
 
-@lilypond[singleline,verbatim]
+@lilypond[raggedright,verbatim]
 a2 s4 a4 \skip 1 a4 
 @end lilypond
 
-The @code{s} syntax is only available in Note mode and Chord mode.  In
+The @code{s} syntax is only available in note mode and chord mode.  In
 other situations, you should use the @code{\skip} command:
 
-@lilypond[singleline,verbatim]
+@lilypond[raggedright,verbatim]
 \score {
   \new Staff <<
     { \time 4/8 \skip 2 \time 4/4 } 
@@ -265,9 +265,19 @@ other situations, you should use the @code{\skip} command:
 The skip command is merely an empty musical placeholder.  It does not
 produce any output, not even transparent output.
 
+The @code{s} skip command does create @internalsref{Staff} and
+@internalsref{Voice} when necessary, similar to note and rest
+commands. For example, the following results in an empty staff.
+
+@lilypond[raggedright,verbatim]
+\score { \notes { s4 } } 
+@end lilypond
+
+The same fragment using @code{\skip} results in an empty page.
+
 @seealso
 
-Internals: @internalsref{SkipEvent}.
+Internals: @internalsref{SkipEvent}, @internalsref{SkipMusic}.
 
 
 
@@ -332,7 +342,7 @@ appending `@code{*}@var{N/M}' (or `@code{*}@var{N}' if @var{M=1}). This
 will not affect the appearance of the notes or rests produced.
 In the following example, the first three notes take up exactly two
 beats:
-@lilypond[fragment,relative 2,verbatim]
+@lilypond[fragment,relative=2,verbatim]
   \time 2/4
    a4*2/3 gis4*2/3 a4*2/3
    a4
@@ -396,11 +406,11 @@ In its meaning a tie is just a way of extending a note duration, similar
 to the augmentation dot; in the following example there are two ways of 
 notating exactly the same concept:
 @c
-@lilypond[fragment, singleline,quote]
+@lilypond[fragment,raggedright,quote]
 \time 3/4 c'2. c'2 ~ c'4
 @end lilypond
 If you need to tie a lot of  notes over bars, it may be easier to use automatic
-note splitting (See @ref{Automatic note splitting}).
+note splitting (see @ref{Automatic note splitting}).
 
 @refcommands
 
@@ -471,7 +481,7 @@ typing @code{\times} only once, saving lots of typing. In the next
 example, there are two triplets shown, while @code{\times} was only
 used once:
 
-@lilypond[fragment,  relative, singleline, verbatim]
+@lilypond[fragment,relative,raggedright,verbatim]
 \property Voice.tupletSpannerDuration = #(ly:make-moment 1 4)
 \times 2/3 { c'8 c c c c c }
 @end lilypond
@@ -565,7 +575,7 @@ an absolute starting pitch must be specified that will act as the
 predecessor of the first note of @var{musicexpr}.
 
 Here is the relative mode shown in action:
-@lilypond[fragment,singleline,verbatim,center]
+@lilypond[fragment,raggedright,verbatim,center]
   \relative c'' {
     b c d c b c bes a 
   }
@@ -699,7 +709,7 @@ typesetting is switched off, the music is processed much more quickly.
 This can be used to skip over the parts of a score that have already
 been checked for errors:
 
-@lilypond[fragment,singleline,verbatim]
+@lilypond[fragment,raggedright,verbatim]
 \relative c'' { c8 d
 \property Score.skipTypesetting = ##t
   e f g a g c, f e d
@@ -712,34 +722,17 @@ c d b bes a g c2 }
 
 Long notes can be converted automatically to tied notes.  This is done
 by replacing the @internalsref{Note_heads_engraver} by the
-@internalsref{Completion_heads_engraver}:
-
-@example
-  \paper @{ \translator @{
-      \ThreadContext
-      \remove "Note_heads_engraver"
-      \consists "Completion_heads_engraver"
-  @} @}
-@end example
+@internalsref{Completion_heads_engraver}.
+In the following examples, notes crossing the barline are split and tied.
 
-which will make long notes tied in the following example:
-@example
-  \time 2/4
-  c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
-@end example
 
-@lilypond[noindent]
-\score{
-  \notes\relative c'{
-  \time 2/4
-  c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
-  }
-  \paper { \translator {
-      \ThreadContext
+@lilypond[noindent,verbatim]
+\new Voice \with {
       \remove "Note_heads_engraver"
       \consists "Completion_heads_engraver"
-  } }
-  }
+} {
+  c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
+}
 @end lilypond
 
 This engraver splits all running notes at the bar line, and inserts
@@ -752,7 +745,11 @@ is off.
 Not all durations (especially those containing tuplets) can be
 represented exactly; the engraver will not insert tuplets. 
 
+@seealso
+
+Examples: @inputfileref{input/regression,completion-heads.ly}
 
+Internals: @internalsref{Completion_heads_engraver}
 
 
 @node Staff notation
@@ -1052,7 +1049,7 @@ Automatic beaming does not use measure grouping specified with
 
 Partial measures, for example in upsteps, are entered using the
 @code{\partial} command:
-@lilypond[fragment,verbatim,relative 1]
+@lilypond[fragment,verbatim,relative=1]
 \partial 16*5  c16 cis d dis e |   a2. c,4 | b2
 @end lilypond
 
@@ -1107,7 +1104,7 @@ of barlines can be forced with the @code{\bar} command:
 @end lilypond
 
 The following bar types are available:
-@lilypond[fragment,  relative, singleline, verbatim]
+@lilypond[fragment,relative,raggedright,verbatim]
 c4
 \bar "|" c
 \bar "" c
@@ -1131,7 +1128,7 @@ In scores with many staves, a @code{\bar} command in one staff is
 automatically applied to all staves. The resulting bar lines are
 connected between different staves of a @internalsref{StaffGroup}:
 @c
-@lilypond[fragment, verbatim]
+@lilypond[fragment,verbatim]
 << \context StaffGroup <<
   \new Staff { e'4 d'
      \bar "||"
@@ -1211,7 +1208,7 @@ by hand, and using @code{\voiceOne}, up to @code{\voiceFour} to assign
 a stem directions and horizontal shift for each part:
 @c
 
-@lilypond[singleline, verbatim]
+@lilypond[raggedright,verbatim]
 \relative c''
 \context Staff << \new Voice { \voiceOne cis2 b  }
   \new Voice { \voiceThree b4 ais ~ ais4 gis4 } 
@@ -1226,7 +1223,7 @@ The command @code{\oneVoice} will revert back to the normal setting.
 Normally, note heads with a different number of dots are not merged, but
 when  the object property @code{merge-differently-dotted} is set in
 the @internalsref{NoteCollision} object, they are merged:
-@lilypond[verbatim,fragment,singleline]
+@lilypond[verbatim,fragment,raggedright]
 \relative c'' \context Voice << {
      g8 g8 
      \property Staff.NoteCollision \override
@@ -1238,7 +1235,7 @@ the @internalsref{NoteCollision} object, they are merged:
 
 Similarly, you can merge half note heads with eighth notes, by setting
 @code{merge-differently-headed}:
-@lilypond[fragment, relative=2,verbatim]
+@lilypond[fragment,relative=2,verbatim]
 \context Voice << {
     c8 c4.
     \property Staff.NoteCollision
@@ -1249,7 +1246,7 @@ Similarly, you can merge half note heads with eighth notes, by setting
 LilyPond also vertically shifts rests that are opposite of a stem:
 
 
-@lilypond[singleline,fragment,verbatim]
+@lilypond[raggedright,fragment,verbatim]
 \context Voice << c''4 \\  r4 >>
 @end lilypond
 
@@ -1320,7 +1317,7 @@ notation (see @ref{Clusters}).
 Beams are used to group short notes into chunks that are aligned with
 the metrum. They are inserted automatically in most cases:
 
-@lilypond[fragment,verbatim, relative=2]
+@lilypond[fragment,verbatim,relative=2]
 \time 2/4 c8 c c c \time 6/8 c c c c8. c16  c8
 @end lilypond
 
@@ -1441,7 +1438,7 @@ Here, @var{BE} is the symbol @code{begin} or @code{end}. It determines
 whether the rule applies to begin or end-points.  The quantity
 @var{P}/@var{Q} refers to the length of the beamed notes (and `@code{*
 *}' designates notes of any length), @var{N}/@var{M} refers to a time
-signature (wildcards, `@code{* *}' may be entered to designate all time
+signature (wildcards `@code{* *}' may be entered to designate all time
 signatures).
 
 For example, if automatic beams should end on every quarter note, use
@@ -1461,7 +1458,7 @@ example, automatic beams can only end on a dotted quarter note:
 @end example
 In 4/4 time signature, this means that automatic beams could end only on
 3/8 and on the fourth beat of the measure (after 3/4, that is 2 times
-3/8 has passed within the measure).
+3/8, has passed within the measure).
 
 Rules can also be restricted to specific time signatures. A rule that
 should only be applied in @var{N}/@var{M} time signature is formed by
@@ -1509,7 +1506,7 @@ In the example below, the autobeamer makes eight beams and sixteenth
 end at 3 eights; the third beam can only be corrected by specifying
 manual beaming.
 
-@lilypond[singleline,fragment,relative,noverbatim,quote]
+@lilypond[raggedright,fragment,relative,noverbatim,quote]
   \property Voice.autoBeamSettings
   \override #'(end * * * *) = #(ly:make-moment 3 8)
   % rather show case where it goes wrong
@@ -1561,7 +1558,7 @@ creation of the piano staff:
     >>
 @}
 @end example
-@lilypond[singleline]
+@lilypond[raggedright]
 \score {
     \notes \relative c'' <<
         \new Staff { cis4 d e2 }
@@ -1601,7 +1598,7 @@ rule is similar to @code{\defaultAccidentals}.
       This leads to some weird and often unwanted results
       because accidentals from one voice do not get cancelled in other
       voices:
-@lilypond[singleline,relative,fragment,verbatim,quote]
+@lilypond[raggedright,relative,fragment,verbatim,quote]
     \context Staff <<
         \voiceAccidentals
         <<
@@ -1623,7 +1620,7 @@ instead.
       You get all the same accidentals, but temporary
       accidentals also get cancelled in other octaves. Furthermore,
       in the same octave, they also get cancelled in the following measure:
-@lilypond[singleline,fragment,verbatim]
+@lilypond[raggedright,fragment,verbatim]
       \modernAccidentals
       cis' c'' cis'2 | c'' c'
 @end lilypond
@@ -1634,7 +1631,7 @@ instead.
      ``extra'' accidentals (the ones not typeset by
      @code{\defaultAccidentals}) are typeset as cautionary accidentals.
      They are printed in reduced size or with parentheses:
-@lilypond[singleline,fragment,verbatim]
+@lilypond[raggedright,fragment,verbatim]
       \modernCautionaries
       cis' c'' cis'2 | c'' c'
 @end lilypond
@@ -1670,7 +1667,7 @@ some of them are typeset as cautionaries.
       @cindex @code{\noResetKey}
       Same as @code{\defaultAccidentals} but with accidentals lasting
       ``forever'' and not only until the next measure:
-@lilypond[singleline,fragment,verbatim,relative]
+@lilypond[raggedright,fragment,verbatim,relative]
       \noResetKey
       c1 cis cis c
 @end lilypond
@@ -1681,7 +1678,7 @@ some of them are typeset as cautionaries.
       are not remembered at all---and hence all accidentals are
       typeset relative to the key signature, regardless of what was
       before in the music:
-@lilypond[singleline,fragment,verbatim,relative]
+@lilypond[raggedright,fragment,verbatim,relative]
       \forgetAccidentals
       \key d\major c4 c cis cis d d dis dis
 @end lilypond
@@ -1758,7 +1755,7 @@ This example shows two examples of the same music giving different
 accidentals depending on the order in which the notes occur in the
 input file:
 
-@lilypond[singleline,fragment,verbatim]
+@lilypond[raggedright,fragment,verbatim]
 \property Staff.autoAccidentals = #'( Staff (any-octave . 0) )
 cis'4 <c'' c'> r2 | cis'4 <c' c''> r2
 | <cis' c''> r | <c'' cis'> r | 
@@ -1799,7 +1796,7 @@ A slur indicates that notes are to be played bound or @emph{legato}.
 @syntax
 
 They are entered using parentheses:
-@lilypond[relative 1,fragment,verbatim,center]
+@lilypond[relative=1,fragment,verbatim,center]
   f( g)( a) a8 b( a4 g2 f4)
   <c e>2( <b d>2)
 @end lilypond
@@ -2000,7 +1997,7 @@ To use this, add the @internalsref{Horizontal_bracket_engraver} to
 @internalsref{Staff} context.  A bracket is started with
 @code{\startGroup} and closed with @code{\stopGroup}:
 
-@lilypond[singleline,verbatim]
+@lilypond[raggedright,verbatim]
 \score { \notes \relative c'' {  
        c4\startGroup\startGroup
        c4\stopGroup
@@ -2033,7 +2030,7 @@ different characteristics of the performance. They are added to a note
 by adding a dash and  the character signifying the
 articulation. They are demonstrated here:
 
-@lilypondfile[notexidoc]{script-abbreviations.ly}
+@lilypondfile[]{script-abbreviations.ly}
 
 The meanings of these shorthands can be changed: see
 @file{ly/script-init.ly} for examples.
@@ -2042,7 +2039,7 @@ The meanings of these shorthands can be changed: see
 The script is automatically placed, but if you need to force
 directions, you can use @code{_} to force them down, or @code{^} to
 put them up:
-@lilypond[fragment, verbatim]
+@lilypond[fragment,verbatim]
   c''4^^ c''4_^
 @end lilypond
 
@@ -2051,7 +2048,7 @@ Other symbols can be added using the syntax
 can be forced up or down using @code{^} and @code{_},
 eg.
 
-@lilypond[verbatim,fragment,relative 2]
+@lilypond[verbatim,fragment,relative=2]
   c\fermata c^\fermata c_\fermata
 @end lilypond
 
@@ -2086,7 +2083,7 @@ eg.
 @cindex coda
 @cindex varcoda
 
-@lilypondfile[notexidoc]{script-chart.ly}
+@lilypondfile[]{script-chart.ly}
 
 
 @refcommands
@@ -2119,7 +2116,7 @@ Fingering instructions can be entered using
 @end example
 For finger changes, use markup texts:
 @c
-@lilypond[verbatim, singleline, fragment]
+@lilypond[verbatim,raggedright,fragment]
       c'4-1 c'4-2 c'4-3 c'4-4
       c'^\markup { \fontsize #-3 \number "2-3" }
 @end lilypond
@@ -2130,16 +2127,16 @@ For finger changes, use markup texts:
 @cindex subscript
 
 You can use the thumb-script to indicate that a note should be
-played with the thumb. (used in cello music):
+played with the thumb (e.g. in cello music):
 
-@lilypond[verbatim, singleline, fragment]
+@lilypond[verbatim,raggedright,fragment]
       <a' a''-3>8(_\thumb <b' b''-3>)_\thumb
       <c'' c'''-3>(_\thumb <d'' d'''-3>)_\thumb
 @end lilypond
 
 Fingerings for chords can also be added to individual notes
 of the chord by adding them after the pitches:
-@lilypond[verbatim,singleline,fragment,relative=1]
+@lilypond[verbatim,raggedright,fragment,relative=1]
         < c-1  e-2 g-3 b-5 > 4
 @end lilypond
 
@@ -2147,7 +2144,7 @@ of the chord by adding them after the pitches:
 In this case, setting @code{fingeringOrientations} will put  fingerings next
 to note heads:
 
-@lilypond[verbatim,singleline,fragment,relative=1]
+@lilypond[verbatim,raggedright,fragment,relative=1]
        \property Voice.fingeringOrientations = #'(left down)
        <c-1 es-2 g-4 bes-5 > 4
        \property Voice.fingeringOrientations = #'(up right down)
@@ -2176,7 +2173,7 @@ It is possible to place arbitrary strings of text or markup text (see
 note spacing, but by using the command @code{\fatText}, the widths
 will be taken into account:
 @c
-@lilypond[fragment,singleline,verbatim] \relative c' {
+@lilypond[fragment,raggedright,verbatim] \relative c' {
 c4^"longtext" \fatText c4_"longlongtext" c4 }
 @end lilypond
 
@@ -2242,7 +2239,7 @@ time. Every point in time consists of two rational numbers: one
 denotes the logical time, one denotes the grace timing. The above
 example is shown here with timing tuples:
 
-@lilypond[singleline]
+@lilypond[raggedright]
 <<
   \relative c''{ 
   c4  \grace c16  c4  \grace {
@@ -2275,7 +2272,7 @@ every eighth grace note:
 
 If you want to end a note with a grace, then the standard trick
 is to put the grace notes after a ``space note'', e.g.
-@lilypond[fragment,verbatim, relative=2]
+@lilypond[fragment,verbatim,relative=2]
 \context Voice {
     << { d1^\trill ( }
      { s2 \grace { c16[ d] } } >>
@@ -2292,7 +2289,7 @@ A @code{\grace} section will introduce special typesetting settings,
 for example, to produce smaller type, and set directions. Hence, when
 introducing layout tweaks, they should be inside the grace section,
 for example,
-@lilypond[fragment,verbatim,relative 1]
+@lilypond[fragment,verbatim,relative=1]
 \new Voice {
     \acciaccatura {
       \property Voice.Stem \override #'direction = #-1
@@ -2323,7 +2320,7 @@ point up.
 Another option is to change the variables @code{startGraceMusic},
 @code{stopGraceMusic}, @code{startAccacciaturaMusic},
 @code{stopAccacciaturaMusic}, @code{startAppoggiaturaMusic},
-@code{stopAppoggiaturaMstuic}.  More information is in the file
+@code{stopAppoggiaturaMusic}.  More information is in the file
 @file{ly/grace-init.ly}
 
 
@@ -2409,7 +2406,7 @@ note: @code{c4\ff}.  The available dynamic marks are @code{\ppp},
 @code{\fff}, @code{\fff}, @code{\fp}, @code{\sf}, @code{\sff},
 @code{\sp}, @code{\spp}, @code{\sfz}, and @code{\rfz}:
 
-@lilypond[verbatim,singleline,fragment,relative]
+@lilypond[verbatim,raggedright,fragment,relative]
   c'\ppp c\pp c \p c\mp c\mf c\f c\ff c\fff
   c2\sf c\rfz
 @end lilypond
@@ -2560,21 +2557,21 @@ give enough alternatives for all of the repeats, then the first
 alternative is assumed to be played more than once.
 
 Normal notation repeats are used like this:
-@lilypond[fragment,verbatim,relative 1]
+@lilypond[fragment,verbatim,relative=1]
   c1
   \repeat volta 2 { c4 d e f }
   \repeat volta 2 { f e d c }
 @end lilypond
 
 With alternative endings:
-@lilypond[fragment,verbatim,relative 1]
+@lilypond[fragment,verbatim,relative=1]
   c1
   \repeat volta 2 {c4 d e f} 
   \alternative { {d2 d} {f f,} }
 @end lilypond
 
 
-@lilypond[fragment,verbatim,relative 1]
+@lilypond[fragment,verbatim,relative=1]
 \context Staff {
     \partial 4
     \repeat volta 4 { e | c2 d2 | e2 f2 | }
@@ -2639,7 +2636,7 @@ alphabetic characters. Or,
   stops a running volta bracket:
 @end table
 
-@lilypond[verbatim, fragment,relative 2]
+@lilypond[verbatim,fragment,relative=2]
  c4
     \property Score.repeatCommands = #'((volta "93") end-repeat)
  c4 c4
@@ -2661,7 +2658,7 @@ Internals: @internalsref{VoltaBracket}, @internalsref{RepeatedMusic},
 
 To place tremolo marks between notes, use @code{\repeat} with tremolo
 style:
-@lilypond[verbatim,singleline]
+@lilypond[verbatim,raggedright]
 \score { 
   \context Voice \notes\relative c' {
     \repeat "tremolo" 8 { c16 d16 }
@@ -2673,7 +2670,7 @@ style:
 
 Tremolo marks can also be put on a single note.  In this case, the
 note should not be surrounded by braces.
-@lilypond[verbatim,singleline]
+@lilypond[verbatim,raggedright]
     \repeat "tremolo" 4 c16
 @end lilypond
 
@@ -2729,7 +2726,7 @@ printed once, and then the pattern is replaced with a special sign.
 Patterns of a one and two measures are replaced by percent-like signs,
 patterns that divide the measure length are replaced by slashes:
 
-@lilypond[verbatim,singleline]
+@lilypond[verbatim,raggedright]
  \context Voice { \repeat  "percent" 4  { c'4 }
     \repeat "percent" 2 { c'2 es'2 f'4 fis'4 g'4 c''4 }
 }
@@ -2746,6 +2743,16 @@ Internals: @internalsref{RepeatSlash}, @internalsref{PercentRepeat},
 @node Rhythmic music
 @section Rhythmic music
 
+
+@menu
+* Showing melody rhythms::      
+* Percussion staves::           
+@end menu
+
+
+@node Showing melody rhythms
+@subsection Showing melody rhythms
+
 Sometimes you might want to show only the rhythm of a melody.  This
 can be done with the rhythmic staff. All pitches of notes on such a
 staff are squashed, and the staff itself has a single line:
@@ -2764,11 +2771,6 @@ Internals: @internalsref{RhythmicStaff}.
 Examples: @inputfileref{input/regression,rhythmic-staff.ly}.
 
 
-@menu
-* Percussion staves::           
-* Percussion MIDI output::      
-@end menu
-
 @node Percussion staves
 @subsection Percussion staves
 @cindex percussion
@@ -2780,68 +2782,57 @@ of percussion.
 
 @syntax
 
-Percussion staves are typeset with help of a set of Scheme
-functions. The system is based on the general MIDI drum-pitches.
-Include @file{drumpitch-init.ly} to use drum pitches. This file
-defines the pitches from the Scheme variable @code{drum-pitch-names},
-the definition of which can be read in @file{scm/drums.scm}.  Each
-piece of percussion has a full name and an abbreviated name, and either
-the full name or the abbreviation may be used in input files.
-
-To typeset the music on a staff apply the function @code{drums->paper}
-to the percussion music. This function takes a list of percussion
-instrument names, notehead scripts and staff positions (that is:
-pitches relative to the C-clef) and transforms the input
-music by moving the pitch, changing the notehead and (optionally)
-adding a script:
+Percussion notes may be entered in @code{\drums} mode, which is
+similar to @code{notes}.  Each piece of percussion has a full name and
+an abbreviated name, and both be used in input files:
+
+@lilypond[raggedright]
+ \drums { hihat4 hh4 }
+@end lilypond
+
+To typeset the music, the notes must be interpreted in a
+@internalsref{DrumStaff} and @internalsref{DrumVoice} contexts:
+
 @c
-@lilypond[singleline,verbatim,quote]
-\include "drumpitch-init.ly"
-up = \notes { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
-down = \notes { bassdrum4 snare8 bd r bd sn4 }
+@lilypond[raggedright,verbatim,quote]
+up = \drums { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
+down = \drums { bassdrum4 snare8 bd r bd sn4 }
 \score {
-    \apply #(drums->paper 'drums) \context Staff <<
-        \clef percussion
-        \new Voice { \voiceOne \up }
-        \new Voice { \voiceTwo \down }
-    >>
-}
-
+    \new DrumStaff
+        << \new DrumVoice { \voiceOne \up } 
+           \new DrumVoice { \voiceTwo \down } 
+>> }
 @end lilypond
-In the above example the music was transformed using the list @code{'drums}.
-The following lists are defined in @file{scm/drums.scm}:
+
+There are also other layout possibilities. To use these, set the
+property @code{drumStyleTable} in context @internalsref{DrumVoice}.
+The following variables have been predefined:
+
 @table @code
-@item 'drums
-to typeset a typical drum kit on a five-line staff:
+@item drums-style
+is the default. It typesets a typical drum kit on a five-line staff
 
 @lilypond[noindent]
-\include "drumpitch-init.ly"
 nam = \lyrics { cymc cyms cymr hh hhc hho hhho hhp cb hc
     bd sn ss tomh tommh tomml toml tomfh tomfl }
-mus = \notes  { cymc cyms cymr hh hhc hho hhho hhp cb hc
+mus = \drums  { cymc cyms cymr hh | hhc hho hhho hhp | \break cb hc
     bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
 \score {
-    <<
-        \apply #(drums->paper 'drums) \context Staff <<
-            \clef percussion
-            \mus
-        >>
-        \context Lyrics \nam 
-    >>
-    \paper {
-        linewidth = 100.0\mm
-        \translator {
-            \StaffContext
+    << \new DrumStaff\with {
             \remove Bar_engraver
             \remove Time_signature_engraver
+            Stem \set #'transparent =  ##t
+            Stem \set #'Y-extent-callback =  ##f
             minimumVerticalExtent = #'(-4.0 . 5.0)
-        }
-        \translator {
-            \VoiceContext
-            \remove Stem_engraver
-        }
-   }   
-}
+    } \mus
+        \context LyricsVoice \nam 
+    >>
+    \paper {
+    %% need to do this, because of indented @itemize
+    linewidth= 9 \cm 
+    \translator { \ScoreContext
+    BarNumber \set #'transparent =##T
+}}}
 @end lilypond
 
 The drum scheme supports six different toms.  When there fewer toms, simply
@@ -2849,129 +2840,92 @@ select the toms that produce the desired result, i.e. to get toms on
 the three middle lines you use @code{tommh}, @code{tomml} and
 @code{tomfh}.
 
-Because general MIDI does not contain rimshots the sidestick is used
-for this purpose instead.
-@item 'timbales
+@item timbales-style
 to typeset timbales on a two line staff:
 
-@lilypond[singleline]
-\include "drumpitch-init.ly"
+@lilypond[raggedright]
 nam = \lyrics { timh ssh timl ssl cb }
-mus = \notes  { timh ssh timl ssl cb s16 }
+mus = \drums  { timh ssh timl ssl cb s16 }
 \score {
     <<
-        \apply #(drums->paper 'timbales) \context Staff <<
-            \clef percussion
-            \mus
-        >>
-        \context Lyrics \nam 
-    >>
-    \paper {
-        \translator {
-            \StaffContext
+        \context DrumStaff \with {
             \remove Bar_engraver
             \remove Time_signature_engraver
+            Stem \set #'transparent =  ##t
+            Stem \set #'Y-extent-callback =  ##f
             StaffSymbol \override #'line-count = #2
             StaffSymbol \override #'staff-space = #2
             minimumVerticalExtent = #'(-3.0 . 4.0)
-        }
-        \translator {
-            \VoiceContext
-            \remove Stem_engraver
-        }
-
-    }   
+            drumStyleTable = #timbales-style
+        } \mus
+        \context LyricsVoice \nam 
+    >>
 }
 @end lilypond
-@item 'congas
+@item congas-style
 to typeset congas on a two line staff:
 
-@lilypond[singleline]
-\include "drumpitch-init.ly"
+@lilypond[raggedright]
 nam = \lyrics { cgh cgho cghm ssh cgl cglo cglm ssl }
-mus = \notes  { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
+mus = \drums  { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
 \score {
     <<
-        \apply #(drums->paper 'congas) \context Staff <<
-            \clef percussion
-            \mus
-        >>
-        \context Lyrics \nam 
-    >>
-    \paper {
-        \translator {
-            \StaffContext
+        \context DrumStaff\with {
             \remove Bar_engraver
             \remove Time_signature_engraver
+            drumStyleTable = #congas-style
             StaffSymbol \override #'line-count = #2
+            
+            %% this sucks; it will lengthen stems.
             StaffSymbol \override #'staff-space = #2
-            minimumVerticalExtent = #'(-3.0 . 4.0)
-        }
-        \translator {
-            \VoiceContext
-            \remove Stem_engraver
-        }
-    }   
+            Stem \set #'transparent =  ##t
+            Stem \set #'Y-extent-callback =  ##f
+        } \mus
+        \context LyricsVoice \nam 
+    >>
 }
 @end lilypond
-@item 'bongos
+@item bongos-style
 to typeset bongos on a two line staff:
 
-@lilypond[singleline]
-\include "drumpitch-init.ly"
+@lilypond[raggedright]
 nam = \lyrics { boh boho bohm ssh bol bolo bolm ssl }
-mus = \notes  { boh boho bohm ssh bol bolo bolm ssl s16 }
+mus = \drums  { boh boho bohm ssh bol bolo bolm ssl s16 }
 \score {
     <<
-        \apply #(drums->paper 'bongos) \context Staff <<
-            \clef percussion
-            \mus
-        >>
-        \context Lyrics \nam 
-    >>
-    \paper {
-        \translator {
-            \StaffContext
+        \context DrumStaff\with {
             \remove Bar_engraver
             \remove Time_signature_engraver
             StaffSymbol \override #'line-count = #2
+            drumStyleTable = #bongos-style
+           
+            %% this sucks; it will lengthen stems.
             StaffSymbol \override #'staff-space = #2
-            minimumVerticalExtent = #'(-3.0 . 4.0)
-        }
-        \translator {
-            \VoiceContext
-            \remove Stem_engraver
-        }
-    }   
+            Stem \set #'transparent =  ##t
+            Stem \set #'Y-extent-callback =  ##f
+        } \mus
+        \context LyricsVoice \nam 
+    >>
 }
 @end lilypond
-@item 'percussion
+
+@item percussion-style
 to typeset all kinds of simple percussion on one line staves:
-@lilypond[singleline]
-\include "drumpitch-init.ly"
+@lilypond[raggedright]
 nam = \lyrics { tri trio trim gui guis guil cb cl tamb cab mar hc }
-mus = \notes  { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
+mus = \drums  { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
 \score {
     <<
-        \apply #(drums->paper 'percussion) \context Staff <<
-            \clef percussion
-            \mus
-        >>
-        \context Lyrics \nam 
-    >>
-    \paper {
-        \translator {
-            \StaffContext
+        \context DrumStaff\with{
             \remove Bar_engraver
-            \remove Time_signature_engraver
+            drumStyleTable = #percussion-style
             StaffSymbol \override #'line-count = #1
-            minimumVerticalExtent = #'(-2.0 . 3.0)
-        }
-        \translator {
-            \VoiceContext
-            \remove Stem_engraver
-        }
-    }   
+            \remove Time_signature_engraver
+            Stem \set #'transparent =  ##t
+            Stem \set #'Y-extent-callback =  ##f
+        } \mus
+        \context LyricsVoice \nam 
+    >>
 }
 @end lilypond
 @end table
@@ -2979,93 +2933,40 @@ mus = \notes  { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
 If you do not like any of the predefined lists you can define your own
 list at the top of your file:
 
-@lilypond[singleline, verbatim]
-#(set-drum-kit 'mydrums `(
-        (bassdrum     default   #f        ,(ly:make-pitch -1 2 0))
-        (snare        default   #f        ,(ly:make-pitch 0 1 0))
-        (hihat        cross     #f        ,(ly:make-pitch 0 5 0))
-        (pedalhihat   xcircle   "stopped" ,(ly:make-pitch 0 5 0))
-        (lowtom              diamond   #f        ,(ly:make-pitch -1 6 0))
+@lilypond[raggedright,verbatim]
+#(define mydrums '(
+        (bassdrum     default   #f        -1)
+        (snare        default   #f        0)
+        (hihat        cross     #f        1)
+        (pedalhihat   xcircle   "stopped" 2)
+        (lowtom              diamond   #f       3)
 ))
-\include "drumpitch-init.ly"
-up = \notes { hh8 hh hh hh hhp4 hhp }
-down = \notes { bd4 sn bd toml8 toml }
-\score {    
-    \apply #(drums->paper 'mydrums) \context Staff <<
-        \clef percussion
-        \new Voice { \voiceOne \up }
-        \new Voice { \voiceTwo \down }
-    >>
-}
-@end lilypond
-
-To use a modified existing list, one can prepend modifications to the
-the existing list:
-
-@example
-#(set-drum-kit 'mydrums (append `(
-   (bassdrum default #f ,(ly:make-pitch -1 2 0))
-   (lowtom   diamond #f ,(ly:make-pitch -1 6 0))
-) (get-drum-kit 'drums)))
-@end example
-
-You can easily combine percussion notation with pitched notation.
-Indeed, the file @file{drumpitch-init.ly} replaces the normal pitch
-names, so you will have to reinclude @file{nederlands.ly} after the
-drum-pattern-definitions to enter normal notes:
-@c
-@lilypond[singleline,verbatim]
-\include "drumpitch-init.ly"
-up = \notes { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
-down = \notes { bassdrum4 snare8 bd r bd sn4 }
-\include "nederlands.ly"
-bass = \notes \transpose c c,, { a4. e8 r e g e }
+up = \drums { hh8 hh hh hh hhp4 hhp }
+down = \drums { bd4 sn bd toml8 toml }
 \score {
-    <<
-        \apply #(drums->paper 'drums) \new Staff <<
-            \clef percussion
-            \new Voice { \voiceOne \up }
-            \new Voice { \voiceTwo \down }
-        >>
-        \new Staff { \clef "F_8" \bass }
+    \new DrumStaff <<
+        \property DrumStaff.drumStyleTable
+           = #(alist->hash-table mydrums)
+        \new DrumVoice { \voiceOne \up }
+        \new DrumVoice { \voiceTwo \down }
     >>
 }
 @end lilypond
 
-@node Percussion MIDI output
-@subsection Percussion MIDI output
 
-In order to produce correct MIDI output you need to produce two score
-blocks---one for the paper and one for the MIDI output.  To use the
-percussion channel you set the property @code{instrument} to
-@code{'drums}. Because the drum-pitches themselves are similar to the
-general MIDI pitches all you have to do is to insert the voices with
-none of the scheme functions to get the correct MIDI output:
+@seealso
 
-@example
-\score @{    
-    \apply #(drums->paper 'mydrums) \context Staff <<
-        \clef percussion
-        @{ \up @}  \\
-        @{ \down @}
-    >>
-    \paper@{@}
-@}
-\score @{    
-    \context Staff <<
-        \property Staff.instrument = #'drums
-        \up \down
-    >>
-    \midi@{@}
-@}
-@end example
+Init files: @file{ly/drumpitch-init.ly}
 
-@refbugs
+Internals: @internalsref{DrumStaff}, @internalsref{DrumVoice} 
 
+@refbugs
 
-Chords entered with @code{< @dots{} >} do not work.  This scheme is a
-temporary implementation.
+Short polyphonic notation, @code{<< @dots{} \\ @dots{} >>}, does not
+work for @internalsref{DrumVoices}.
 
+Because general MIDI does not contain rimshots the sidestick is used
+for this purpose instead.
 
 @node Piano music
 @section Piano music
@@ -3114,7 +3015,7 @@ Dynamics are not centered, but kludges do exist. See
 Voices can switch automatically between the top and the bottom
 staff. The syntax for this is
 @example
-  \autochange Staff \context Voice @{ @dots{}@var{music}@dots{} @}
+  \autochange \context Voice @{ @dots{}@var{music}@dots{} @}
 @end example
 The two staffs of the piano staff must be named @code{up} and
 @code{down}.
@@ -3123,11 +3024,11 @@ The autochanger switches on basis of pitch (central C is the turning
 point), and it looks ahead skipping over rests to switch in
 advance. Here is a practical example:
         
-@lilypond[verbatim,singleline,quote]
+@lilypond[verbatim,raggedright,quote]
 \score { \notes \context PianoStaff <<
   \context Staff = "up" {
-    \autochange Staff \context Voice = VA << \relative c' {
-       g4 a  b c d r4 a g } >> }
+    \autochange \new Voice \relative c' {
+       g4 a  b c d r4 a g } }
   \context Staff = "down" {
        \clef bass
        s1*2
@@ -3153,6 +3054,7 @@ The staff switches often do not end up in optimal places. For high
 quality output, staff switches should be specified manually.
 
 
+
 @node Manual staff switches
 @subsection Manual staff switches
 
@@ -3433,9 +3335,13 @@ next one. Such a line is called an extender line, and it is entered as
 Internals: @internalsref{LyricEvent}, @internalsref{HyphenEvent}, and
 @internalsref{ExtenderEvent}.
 
+Examples: @inputfileref{input/test,lyric-hyphen-retain.ly}
+
 @refbugs
 
-The definition of lyrics mode is too complex. 
+The definition of lyrics mode is too complex.
+
+
 
 @node The Lyrics context
 @subsection  The Lyrics context
@@ -3497,7 +3403,7 @@ an unslurred group of notes to be a melisma, then insert
 @code{\melisma} after the first note of the group, and
 @code{\melismaEnd} after the last one, e.g.
 
-@lilypond[relative 1, singleline, fragment,verbatim]
+@lilypond[relative=1,raggedright,fragment,verbatim]
 <<  \context Voice = "lala" { \time 3/4
     f4 g8
     \melisma 
@@ -3510,7 +3416,7 @@ an unslurred group of notes to be a melisma, then insert
 @end lilypond
 
 In addition, notes are considered a melisma if they are manually
-beamed, and automatic beaming (See @ref{Setting automatic beam
+beamed, and automatic beaming (see @ref{Setting automatic beam
 behavior}) is switched off.  The criteria for deciding melismata
 can be tuned with the property @code{melismaBusyProperties}. See
 @internalsref{Melisma_engraver} for more information.
@@ -3528,6 +3434,7 @@ in @inputfileref{input/regression,lyric-combine-new.ly}.
 A complete example of a SATB score setup is in the file
 @inputfileref{input/template,satb.ly}.
 
+
 @refcommands
 
 @code{\melisma}, @code{\melismaEnd}
@@ -3536,16 +3443,23 @@ A complete example of a SATB score setup is in the file
 
 @seealso
 
-Internals: @internalsref{LyricCombineMusic}, @internalsref{Lyrics},
-@internalsref{Melisma_engraver}.
+Internals: Music expressions: @internalsref{LyricCombineMusic},
+Contexts: @internalsref{LyricsVoice}, @internalsref{Melisma_engraver}.
 
 Examples: @inputfileref{input/template,satb.ly},
 @inputfileref{input/regression,lyric-combine-new.ly}.
  
 @refbugs
 
-Melismata are not detected automatically, and must be inserted by hand.
+Melismata are not detected automatically, and extender lines must be
+inserted by hand.
+
 
+For proper processing of extender lines, the
+@internalsref{LyricsVoice} and @internalsref{Voice} should be
+linked. This can be achieved either by using @code{\lyricsto} or by
+setting corresponding names for both contexts. The latter is explained
+in @ref{More stanzas}.
 
 @node More stanzas
 @subsection More stanzas
@@ -3555,7 +3469,8 @@ Melismata are not detected automatically, and must be inserted by hand.
 
 The lyrics should be aligned with the note heads of the melody. To
 achieve this, each line of lyrics should be marked to correspond with
-the melodic line.
+the melodic line. This is done automatically when @code{\lyricsto},
+but it can also be done manually. 
 
 To this end, give the @internalsref{Voice} context an identity:
 @example
@@ -3576,7 +3491,7 @@ that identity followed by a dash.  In the preceding example, the
 @end example
 
 The complete example is shown here:
-@lilypond[singleline,verbatim]
+@lilypond[raggedright,verbatim]
 \score {
   << \notes \relative c'' \context Voice = duet { \time 3/4
      g2 e4 a2 f4 g2.  }
@@ -3607,12 +3522,17 @@ prevent @code{LyricsVoice.stanza} being interpreted as a single
 string.
 
 Names of the singers should be added using @code{LyricsVoice
-. instrument} and @code{LyricsVoice . instr}, analogous to instrument
+. vocalName} and @code{LyricsVoice . vocNam}, analogous to instrument
 annotations for staves.
  
 To make empty spaces in lyrics, use @code{\skip}.
 
 
+@seealso
+
+Internals: Layout objects @internalsref{LyricText}
+@internalsref{VocalName}.  Music expressions:
+@internalsref{LyricEvent}.
 
 @refbugs
 
@@ -3672,7 +3592,7 @@ To apply, add the @internalsref{Ambitus_engraver} to the
 @end example
 
 This results in the following output:
-@lilypond[singleline]
+@lilypond[raggedright]
 upper = \notes \relative c {
   \clef "treble"
   \key c \minor
@@ -3837,7 +3757,7 @@ also be entered by name. Internally, the chords are represented as a
 set of pitches, so they can be transposed:
 
 
-@lilypond[verbatim,singleline]
+@lilypond[verbatim,raggedright]
 twoWays = \notes \transpose c c' {
   \chords {
     c1 f:sus4 bes/f
@@ -3871,7 +3791,7 @@ Chord mode is a mode where you can input sets of pitches using common
 names.  It is introduced by the keyword @code{\chords}.
 In chords mode,  a  chord is entered by the root, which is entered
 like a common pitch:
-@lilypond[fragment,verbatim,quote, relative=1]
+@lilypond[fragment,verbatim,quote,relative=1]
 \chords { es4.  d8 c2 }
 @end lilypond
 @cindex chord entry
@@ -3995,7 +3915,7 @@ For displaying printed chord names, use the @internalsref{ChordNames} context.
 The chords may be entered either using the notation
 described above, or directly using @code{<} and @code{>}:
 
-@lilypond[verbatim,singleline]
+@lilypond[verbatim,raggedright]
 scheme = \notes {
   \chords {a1 b c} <d' f' a'>  <e' g' b'>
 }
@@ -4012,7 +3932,7 @@ You can make the chord changes stand out by setting
 display chord names when there is a change in the chords scheme and at
 the start of a new line:
 
-@lilypond[verbatim, linewidth=9cm]
+@lilypond[verbatim,linewidth=9\cm]
 scheme = \chords {
   c1:m c:m \break c:m c:m d
 }
@@ -4199,7 +4119,7 @@ as argument. It should return a markup object. In the following
 example, @code{markFormatter} is set to a canned procedure. After a
 few measures, it is set to function that produces a boxed number. 
 
-@lilypond[verbatim,fragment,relative 1]
+@lilypond[verbatim,fragment,relative=1]
   \property Score.markFormatter = #format-mark-numbers 
   c1 \mark \default
   c1 \mark \default
@@ -4274,7 +4194,7 @@ beginning of each line. This is illustrated in the following example,
 whose source is available as
 @inputfileref{input/test,bar-number-regular-interval.ly}:
 
-@lilypondfile[notexidoc]{bar-number-regular-interval.ly}
+@lilypondfile[]{bar-number-regular-interval.ly}
 
 
 @seealso
@@ -4303,7 +4223,7 @@ the start of the staff. For the first start, @code{instrument} is
 used, for the next ones @code{instr} is used:
 
 @quotation
-@lilypond[verbatim,singleline]
+@lilypond[verbatim,raggedright]
   \property Staff.instrument = "ploink " { c''4 }  
 @end lilypond
 @end quotation
@@ -4312,7 +4232,7 @@ You can also use markup texts to construct more complicated instrument
 names:
 
 @quotation
-@lilypond[fragment,verbatim,singleline]
+@lilypond[fragment,verbatim,raggedright]
   \notes {
     \property Staff.instrument = \markup {
         \column < "Clarinetti"
@@ -4348,17 +4268,33 @@ is
   \transpose @var{from} @var{to} @var{musicexpr}
 @end example
 
-This means that @var{musicexpr} is transposed by the interval
-between the pitches @var{from} and @var{to}.
-Since @var{from} and @var{to} are pitches, @code{\transpose} must be
-inside a @code{\notes} section.
+This means that @var{musicexpr} is transposed by the interval between
+the pitches @var{from} and @var{to}: any note with pitch @code{from}
+is changed to @code{to}.
 
-@code{\transpose} distinguishes between enharmonic pitches: both
-@code{\transpose c cis} or @code{\transpose c des} will transpose up
-half a tone.  The first version will print sharps and the second
-version will print flats:
 
-@lilypond[singleline, verbatim]
+For example, consider  a piece written in the key of  D major.  If
+this piece is a  little too low for its performer, it can be
+transposed up to E major with
+@example
+ \tranpose d e @dots{}
+@end example
+
+Consider a part  written for violin (a C instrument). If
+this part is to be played on the A clarinet, the following
+transposition will produce the appropriate part
+
+@example
+  \transpose a c @dots{}
+@end example   
+
+Since @var{from} and @var{to} are pitches, @code{\transpose} must be
+inside a @code{\notes} section.  @code{\transpose} distinguishes
+between enharmonic pitches: both @code{\transpose c cis} or
+@code{\transpose c des} will transpose up half a tone.  The first
+version will print sharps and the second version will print flats:
+
+@lilypond[raggedright,verbatim]
 mus =\notes { \key d \major cis d fis g }
 \score { \notes \context Staff {
   \clef "F" \mus
@@ -4495,27 +4431,24 @@ voices, and stem directions are set automatically.  Also, solo and
 The syntax for part combining is
 
 @example
-  \partcombine @var{context} @var{musicexpr1} @var{musicexpr2}
+  \partcombine @var{musicexpr1} @var{musicexpr2}
 @end example
-where the pieces of music @var{musicexpr1} and @var{musicexpr2} will be
-combined into one context of type @var{context}.  The music expressions
-must be interpreted by contexts whose names should start with @code{one}
-and @code{two}.
+
+The music expressions will be interpreted as @internalsref{Voice}
+contexts.
 
 The following example demonstrates the basic functionality of the part
 combiner: putting parts on one staff, and setting stem directions and
 polyphony:
 
-@lilypond[verbatim,singleline,fragment]
-  \context Staff <<
-    \context Voice=one \partcombine Voice
-      \context Thread=one \relative c'' {
+@lilypond[verbatim,raggedright,fragment,relative=1]
+  \new Staff \partcombine 
+      {
         g a( b) r
       }
-      \context Thread=two \relative c'' {
+      {
         g r4 r f
       }
-  >>
 @end lilypond
 
 The first @code{g} appears only once, although it was
@@ -4528,52 +4461,34 @@ first part (with context called @code{one}) always gets up stems, and
 If you just want the merging parts, and not the textual markings, you
 may set the property @var{soloADue} to false:
 
-@lilypond[verbatim,singleline,fragment]
-  \context Staff <<
+@lilypond[verbatim,raggedright,fragment]
+   \new Staff <<
     \property Staff.soloADue = ##f
-    \context Voice=one \partcombine Voice
-      \context Thread=one \relative c'' {
-        b4 a c g
-      }
-      \context Thread=two \relative c'' {
-        d,2 a4 g'
+    \partcombine 
+      {
+        g a( b) r
       }
-  >>
+      {
+        g r4 r f
+      } >>
 @end lilypond
 
 @seealso
 
 Internals: @internalsref{PartCombineMusic},
-@internalsref{Thread_devnull_engraver}, and
-@internalsref{Voice_devnull_engraver} and @internalsref{A2_engraver}.
+@internalsref{SoloOneEvent}, and
+@internalsref{SoloTwoEvent}, and
+@internalsref{UnisonoEvent}.
 
 @refbugs
 
-The syntax for naming contexts in inconsistent with the syntax for
-combining stanzas.
-
 In @code{soloADue} mode, when the two voices play the same notes on and
 off, the part combiner may typeset @code{a2} more than once in a
-measure:
+measure.
 
-@lilypond[fragment,singleline]
-  \context Staff <<
-    \context Voice=one \partcombine Voice
-      \context Thread=one \relative c'' {
-        c b c b c a c a
-      }
-      \context Thread=two \relative c'' {
-        b b b b f a f a
-      }
-  >>
-@end lilypond
+@code{\partcombine} can not be inside @code{\times}. 
 
-The part combiner is rather buggy, and it will be replaced by a better
-mechanism in the near future.
 
-@cindex @code{Thread_devnull_engraver}
-@cindex @code{Voice_engraver}
-@cindex @code{A2_engraver}
 
 @node Hiding staves
 @subsection Hiding staves
@@ -4659,7 +4574,7 @@ filtered. For example,
 @end example
 would yield
 
-@lilypondfile[notexidoc]{tag-filter.ly}
+@lilypondfile[]{tag-filter.ly}
 
 The argument of the @code{\tag} command should be a symbol, or a list
 of symbols, for example,
@@ -4778,7 +4693,7 @@ printings of the 16th century.
 
 The following example demonstrates the @code{neo_mensural} style:
 
-@lilypond[fragment,singleline,verbatim]
+@lilypond[fragment,raggedright,verbatim]
   \property Voice.NoteHead \set #'style = #'neo_mensural
   a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
 @end lilypond
@@ -4812,7 +4727,7 @@ Use the @code{style} property of grob @internalsref{Accidental} to
 select ancient accidentals.   Supported styles are
 @code{mensural}, @code{vaticana}, @code{hufnagel} and @code{medicaea}.
 
-@lilypond[singleline,26pt]
+@lilypond[raggedright,staffsize=26]
 \score {
     \notes {
         \fatText
@@ -4895,7 +4810,7 @@ in historic prints of the 16th century.
 
 The following example demonstrates the @code{neo_mensural} style:
 
-@lilypond[fragment,singleline,verbatim]
+@lilypond[fragment,raggedright,verbatim]
   \property Voice.Rest \set #'style = #'neo_mensural
   r\longa r\breve r1 r2 r4 r8 r16
 @end lilypond
@@ -4944,7 +4859,7 @@ with respect to that clef.
 modern style mensural C clef @tab
 @code{neo_mensural_c1}, @code{neo_mensural_c2},
 @code{neo_mensural_c3}, @code{neo_mensural_c4} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "neo_mensural_c2" c
 @end lilypond
@@ -4968,7 +4883,7 @@ petrucci style mensural C clefs, for use  on different  stafflines
 @code{petrucci_c5}
 
 @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "petrucci_c2" c
 @end lilypond
@@ -4977,7 +4892,7 @@ petrucci style mensural C clefs, for use  on different  stafflines
 @code{clefs-petrucci_f} @tab
 petrucci style mensural F clef @tab
 @code{petrucci_f} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "petrucci_f" c
 @end lilypond
@@ -4986,7 +4901,7 @@ petrucci style mensural F clef @tab
 @code{clefs-petrucci_g} @tab
 petrucci style mensural G clef @tab
 @code{petrucci_g} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "petrucci_g" c
 @end lilypond
@@ -4996,7 +4911,7 @@ petrucci style mensural G clef @tab
 historic style mensural C clef @tab
 @code{mensural_c1}, @code{mensural_c2}, @code{mensural_c3},
 @code{mensural_c4} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "mensural_c2" c
 @end lilypond
@@ -5005,7 +4920,7 @@ historic style mensural C clef @tab
 @code{clefs-mensural_f} @tab
 historic style mensural F clef @tab
 @code{mensural_f} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "mensural_f" c
 @end lilypond
@@ -5014,7 +4929,7 @@ historic style mensural F clef @tab
 @code{clefs-mensural_g} @tab
 historic style mensural G clef @tab
 @code{mensural_g} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "mensural_g" c
 @end lilypond
@@ -5023,7 +4938,7 @@ historic style mensural G clef @tab
 @code{clefs-vaticana_do} @tab
 Editio Vaticana style do clef @tab
 @code{vaticana_do1}, @code{vaticana_do2}, @code{vaticana_do3} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
     \property Staff.StaffSymbol \set #'line-count  = #4
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "vaticana_do2" c
@@ -5033,7 +4948,7 @@ Editio Vaticana style do clef @tab
 @code{clefs-vaticana_fa} @tab
 Editio Vaticana style fa clef @tab
 @code{vaticana_fa1}, @code{vaticana_fa2} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
     \property Staff.StaffSymbol \set #'line-count  = #4
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "vaticana_fa2" c
@@ -5043,7 +4958,7 @@ Editio Vaticana style fa clef @tab
 @code{clefs-medicaea_do} @tab
 Editio Medicaea style do clef @tab
 @code{medicaea_do1}, @code{medicaea_do2}, @code{medicaea_do3} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
     \property Staff.StaffSymbol \set #'line-count  = #4
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "medicaea_do2" c
@@ -5053,7 +4968,7 @@ Editio Medicaea style do clef @tab
 @code{clefs-medicaea_fa} @tab
 Editio Medicaea style fa clef @tab
 @code{medicaea_fa1}, @code{medicaea_fa2} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
     \property Staff.StaffSymbol \set #'line-count  = #4
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "medicaea_fa2" c
@@ -5063,7 +4978,7 @@ Editio Medicaea style fa clef @tab
 @code{clefs-hufnagel_do} @tab
 historic style hufnagel do clef @tab
 @code{hufnagel_do1}, @code{hufnagel_do2}, @code{hufnagel_do3} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
     \property Staff.StaffSymbol \set #'line-count  = #4
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "hufnagel_do2" c
@@ -5073,7 +4988,7 @@ historic style hufnagel do clef @tab
 @code{clefs-hufnagel_fa} @tab
 historic style hufnagel fa clef @tab
 @code{hufnagel_fa1}, @code{hufnagel_fa2} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
     \property Staff.StaffSymbol \set #'line-count  = #4
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "hufnagel_fa2" c
@@ -5083,7 +4998,7 @@ historic style hufnagel fa clef @tab
 @code{clefs-hufnagel_do_fa} @tab
 historic style hufnagel combined do/fa clef @tab
 @code{hufnagel_do_fa} @tab
-@lilypond[relative 0, notime]
+@lilypond[relative,notime]
 \property Staff.TimeSignature \set #'transparent = ##t
 \clef "hufnagel_do_fa" c
 @end lilypond
@@ -5126,6 +5041,11 @@ For the @code{TAB} clef, see @ref{Tablatures}.
 
 Internals: for modern clefs, see @ref{Clef}.
 
+@refbugs
+
+The mensural g clef is temporarily mapped to the Petrucci g clef,
+until a new mensural g clef will have been implemented.
+
 
 
 @node Ancient flags
@@ -5139,7 +5059,7 @@ Use the @code{flag-style} property of grob @internalsref{Stem} to
 select ancient flags.  Besides the @code{default} flag style,
  only @code{mensural} style is supported:
 
-@lilypond[fragment,singleline,verbatim]
+@lilypond[fragment,raggedright,verbatim]
   \property Voice.Stem \set #'flag-style = #'mensural
   \property Voice.Stem \set #'thickness = #1.0
   \property Voice.NoteHead \set #'style = #'mensural
@@ -5155,7 +5075,7 @@ grob @internalsref{Stem} to @code{##f}.  Then, the vertical position
 of the end of each flare is different between notes on staff lines and
 notes between staff lines:
 
-@lilypond[fragment,singleline]
+@lilypond[fragment,raggedright]
   \property Voice.Stem \set #'flag-style = #'mensural
   \property Voice.Stem \set #'thickness = #1.0
   \property Voice.Stem \set #'adjust-if-on-staffline = ##f
@@ -5429,7 +5349,7 @@ and @code{\finalis} at proper places in the input.  Some editions use
 Therefore, @code{gregorian-init.ly} also defines @code{\virgula} and
 @code{\caesura}:
 
-@lilypondfile[notexidoc]{divisiones.ly}
+@lilypondfile[]{divisiones.ly}
 
 @refcommands
 
@@ -5491,7 +5411,7 @@ additional input syntax specific for this particular type of ligature.
 By default, the @internalsref{LigatureBracket} engraver just puts a
 square bracket above the ligature:
 
-@lilypond[singleline,verbatim]
+@lilypond[raggedright,verbatim]
 \score {
     \notes \transpose c c' {
         \[ g c a f d' \]
@@ -5560,7 +5480,7 @@ For example,
         s4
         \[ e1 f1 a\breve g\longa \]
 @end example
-@lilypond[singleline]
+@lilypond[raggedright]
 \score {
     \notes \transpose c c' {
         \property Score.timing = ##f
@@ -5586,7 +5506,7 @@ Without replacing @internalsref{Ligature_bracket_engraver} with
 @internalsref{Mensural_ligature_engraver}, the same music transcribes
 to the following:
 
-@lilypond[singleline]
+@lilypond[raggedright]
 \score {
     \notes \transpose c c' {
         \property Score.timing = ##f
@@ -5642,7 +5562,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{1. Punctum}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.5cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.5\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5680,7 +5600,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=2.5cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=2.5\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5722,7 +5642,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5759,7 +5679,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{2. Virga}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5798,7 +5718,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{3. Apostropha vel Stropha}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5832,7 +5752,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5870,7 +5790,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{4. Oriscus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5909,7 +5829,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{5. Clivis vel Flexa}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5943,7 +5863,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=2.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=2.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -5981,7 +5901,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6018,7 +5938,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{6. Podatus vel Pes}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6052,7 +5972,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=2.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=2.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6090,7 +6010,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6127,7 +6047,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{7. Pes Quassus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6161,7 +6081,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6199,7 +6119,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{8. Quilisma Pes}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6233,7 +6153,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6271,7 +6191,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{9. Podatus Initio Debilis}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6305,7 +6225,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6343,7 +6263,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{10. Torculus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6377,7 +6297,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6411,7 +6331,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6448,7 +6368,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{11. Torculus Initio Debilis}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6482,7 +6402,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6516,7 +6436,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6553,7 +6473,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{12. Porrectus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6587,7 +6507,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6621,7 +6541,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6658,7 +6578,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{13. Climacus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6692,7 +6612,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6726,7 +6646,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6763,7 +6683,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{14. Scandicus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6797,7 +6717,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6831,7 +6751,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6868,7 +6788,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{15. Salicus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6902,7 +6822,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 }
 @end lilypond
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -6940,7 +6860,7 @@ volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
 @item
 @code{16. Trigonus}
 @tab
-@lilypond[noindent, 26pt, nofragment, linewidth=1.0cm]
+@lilypond[noindent,staffsize=26,nofragment,linewidth=1.0\cm]
 \include "gregorian-init.ly"
 \score {
     \notes \transpose c c' {
@@ -7358,15 +7278,15 @@ entering the chant, as the following short excerpt demonstrates:
 \include "gregorian-init.ly"
 \score {
 <<
-  \context VaticanaVoice {
+  \context VaticanaVoice = "cantus" {
     \property Score.BarNumber \set #'transparent = ##t
     \notes {
-      \[ c'( c' \flexa a \] \[ a \flexa \deminutum g) \] f \divisioMinima
-      \[ f( \pes a c' c' \pes d') \] c' \divisioMinima \break
-      \[ c'( c' \flexa a \] \[ a \flexa \deminutum g) \] f \divisioMinima
+      \[ c'\melisma c' \flexa a \] \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
+      \[ f\melisma \pes a c' c' \pes d'\melismaEnd \] c' \divisioMinima \break
+      \[ c'\melisma c' \flexa a \] \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
     }
   }
-  \lyricsto "" \new LyricsVoice \lyrics {
+  \lyricsto "cantus" \new LyricsVoice \lyrics {
     San- ctus, San- ctus, San- ctus
   } >>
   
@@ -7424,7 +7344,7 @@ A cluster is engraved as the envelope of a set of
 cluster-notes. Cluster notes are created by applying the function
 @code{notes-to-clusters} to a sequence of chords, e.g.
 @c
-@lilypond[relative 1,verbatim]
+@lilypond[relative=1,verbatim]
     \apply #notes-to-clusters {  <c e > <b f'>  }
 @end lilypond
 
@@ -7432,7 +7352,7 @@ The following example (from
 @inputfileref{input/regression,cluster.ly}) shows what the result
 looks like:
 
-@lilypondfile[notexidoc]{cluster.ly}
+@lilypondfile[]{cluster.ly}
 
 By default, @internalsref{Cluster_spanner_engraver} is in the
 @internalsref{Voice} context.  This allows putting ordinary notes and
@@ -7470,7 +7390,7 @@ indicate fermatas of differing lengths.
 
 The following are supported
 
-@lilypond[singleline]
+@lilypond[raggedright]
 \score {
   <<  \addlyrics \notes {
         b'
@@ -7492,7 +7412,7 @@ The following are supported
         _\verylongfermata
         r
     }
-    \context Lyrics \lyrics {
+    \context LyricsVoice \lyrics {
       "shortfermata" "fermata"  "longfermata" "verylongfermata"
     } >>
 }
@@ -7518,7 +7438,7 @@ balloon.  The primary purpose of this feature is to explain notation.
 
 The following example demonstrates its use.
 
-@lilypond[verbatim,fragment,singleline,relative 1]
+@lilypond[verbatim,fragment,raggedright,relative=1]
   \context Voice
      \applyoutput
         #(add-balloon-text 'NoteHead "heads, or tails?"
@@ -7550,7 +7470,7 @@ Examples: @inputfileref{input/regression,balloon.ly}
 The `easy play' note head includes a note name inside the head.  It is
 used in music aimed at beginners:
 
-@lilypond[singleline,verbatim,26pt]
+@lilypond[raggedright,verbatim,staffsize=26]
 \score {
   \notes { c'2 e'4 f' | g'1 }
   \paper { \translator { \EasyNotation } } 
@@ -7658,7 +7578,7 @@ This command applies a setting only during one moment in the score.
 In the following example, only one @internalsref{Stem} object is
 changed from its original setting:
 
-@lilypond[verbatim, fragment, relative=1]
+@lilypond[verbatim,fragment,relative=1]
   c4 
   \once \property Voice.Stem \set #'thickness = #4
   c4
@@ -7773,18 +7693,18 @@ After such a tweak, the definition is independent of the objects in
 enclosing contexts. For example
 
 @lilypond[verbatim,fragment]
-  \property Voice.Stem \set #'direction = #1
-  a'4
+  \property Voice.Stem \set #'direction = #UP
+  d''4
   \property Staff.Stem \set #'thickness = #4.0
-  a'8
-  \new Voice { a'32 }
+  d''8
+  \new Voice { d'32 }
 @end lilypond
 
 In this fragment, @code{direction} is tweaked. As a result, the
 current @internalsref{Voice} gets a private version of the
 @internalsref{Stem} object. The following tweak modifies the
 definition at @internalsref{Staff} level. Since it a different
-definition, the thickness of the first @code{b'16} is unaffected.  For
+definition, the thickness of the first @code{d'} is unaffected.  For
 the third note, a new Voice is created, which inherits the new
 definition, including the changed thickness, but excluding the new
 neutral direction.
@@ -8142,12 +8062,27 @@ to more words:
 
 @noindent
 For clarity, you can also do this for single arguments, e.g.
-@example
-  \markup @{ is \italic @{ anyone @} home @}
-@end example
+
+@verbatim
+  \markup { is \italic { anyone } home }
+@end verbatim
 
 @cindex font size, texts
 
+
+
+
+
+@menu
+* Common text markup commands::  
+* Markup construction in scheme::  
+* Markup command definition::   
+@end menu
+
+@node Common text markup commands
+@subsubsection Common text markup commands
+
+
 The following size commands set absolute sizes:
 
 @cindex @code{\teeny}
@@ -8317,9 +8252,6 @@ allegro = \markup { \bold \large { Allegro } }
 \notes { a^\allegro b c d }
 @end verbatim
 
-The markup mechanism is extensible.  Refer to
-@file{scm/new-markup.scm} for more information.
-
 
 Some objects have alignment procedures of their own, which cancel out
 any effects of alignments applied to their markup arguments as a
@@ -8336,6 +8268,7 @@ all markup commands.
 
 Init files:  @file{scm/new-markup.scm}.
 
+
 @refbugs
 
 @cindex kerning
@@ -8353,6 +8286,206 @@ for formatting.
 
 
 
+@node Markup construction in scheme
+@subsubsection Markup construction in scheme
+
+@cindex defining markup commands 
+
+The @code{markup} macro builds markup expressions in Scheme while
+providing a LilyPond-like syntax. For example,
+@example
+(markup #:column (#:line (#:bold #:italic "hello" #:raise 0.4 "world")
+                  #:bigger #:line ("foo" "bar" "baz")))
+@end example
+
+@noindent
+is equivalent to:
+@example
+\markup \column < @{ \bold \italic "hello" \raise #0.4 "world" @}
+                  \bigger @{ foo bar baz @} >
+@end example
+
+@noindent
+This example exposes the main translation rules between regular
+LilyPond markup syntax and scheme markup syntax, which are summed up
+is this table:
+@multitable @columnfractions .5 .5
+@item @b{LilyPond} @tab @b{Scheme}
+@item @code{\command} @tab @code{#:command}
+@item @code{\variable} @tab @code{variable}
+@item @code{@{ ... @}} @tab @code{#:line ( ... )}
+@item @code{\center < ... >} @tab @code{#:center ( ... )}
+@item @code{string} @tab @code{"string"}
+@item @code{#scheme-arg} @tab @code{scheme-arg}
+@end multitable
+
+Besides, the whole scheme language is accessible inside the
+@code{markup} macro: thus, one may use function calls inside
+@code{markup} in order to manipulate character strings for
+instance. This proves useful when defining new markup commands (see
+@ref{Markup command definition}).
+
+@refbugs
+
+One can not feed the @code{#:line} (resp @code{#:center},
+@code{#:column}) command with a variable or the result of a function
+call. Eg:
+@lisp
+(markup #:line (fun-that-returns-markups))
+@end lisp
+is illegal. One should use the @code{make-line-markup} (resp
+@code{make-center-markup}, @code{make-column-markup}) function
+instead:
+@lisp
+(markup (make-line-markup (fun-that-returns-markups)))
+@end lisp
+
+@node Markup command definition
+@subsubsection Markup command definition
+
+New markup commands can be defined thanks to the @code{def-markup-command} scheme macro.
+@lisp
+(def-markup-command (@emph{command-name} @emph{paper} @emph{props} @emph{arg1} @emph{arg2} ...) (@emph{arg1-type?} @emph{arg2-type?} ...)
+  ..command body..)
+
+    @emph{argi}: i@emph{th} command argument
+    @emph{argi-type?}: a type predicate for the i@emph{th} argument
+    @emph{paper}: the `paper' definition
+    @emph{props}: a list of alists, containing all active properties. 
+@end lisp
+
+As a simple example, we show how to add a @code{\smallcaps} command,
+which selects @TeX{}'s small caps font.  Normally, we could select the
+small caps font as follows:
+
+@verbatim
+  \markup { \override #'(font-shape . caps)  Text-in-caps }
+@end verbatim
+
+This selects the caps font by setting the @code{font-shape} property to
+@code{#'caps} for interpreting @code{Text-in-caps}.
+
+To make the above available as @code{\smallcaps} command, we have to
+define a function using @code{def-markup-command}. The command should
+take a single argument, of markup type. Therefore, the start of the
+definition should read
+@example
+  (def-markup-command (smallcaps paper props argument) (markup?)
+@end example
+
+@noindent
+
+What follows is the content of the command: we should interpret
+the @code{argument} as a markup, i.e.
+
+@example
+    (interpret-markup paper  @dots{} argument)
+@end example
+
+@noindent
+This interpretation should add @code{'(font-shape . caps)} to the active
+properties, so we substitute the the following for the @dots{} in the
+above example:
+
+@example
+ (cons (list '(font-shape . caps) ) props)
+@end example
+
+@noindent
+The variable @code{props} is a list of alists, and we prepend to it by
+consing a list with the extra setting.
+
+However, suppose that we are using a font that does not have a
+small-caps variant. In that case, we have to fake the small caps font,
+by setting a string in upcase, with the first letter a little larger:
+
+@example
+#(def-markup-command (smallcaps paper props str) (string?)
+   "Print the string argument in small caps. Syntax: \\smallcaps #\"string\""
+   (interpret-markup paper props
+    (make-line-markup
+     (map (lambda (s)
+            (if (= (string-length s) 0)
+                s
+                (markup #:large (string-upcase (substring s 0 1))
+                        #:translate (cons -0.6 0)
+                        #:tiny (string-upcase (substring s 1)))))
+          (string-split str #\Space)))))
+@end example
+
+The @code{smallcaps} command first splits its string argument into
+tokens separated by spaces (@code{(string-split str #\Space)}); for
+each token, a markup is built with the first letter made large and
+upcased (@code{#:large (string-upcase (substring s 0 1))}), and a
+second markup built with the following letters made tiny and upcased
+(@code{#:tiny (string-upcase (substring s 1))}). As LilyPond
+introduces a space between markups on a line, the second markup is
+translated to the left (@code{#:translate (cons -0.6 0) ...}). Then,
+the markups built for each token are put in a line
+(@code{(make-line-markup ...)}). Finally, the resulting markup is
+passed to the @code{interpret-markup} function, with the @code{paper}
+and @code{props} arguments.
+
+Finally, suppose that we are typesetting a recitative in an opera, and
+we would like to define a command that will show character names in a
+custom manner. Names should be printed with small caps and translated a
+bit to the left and top.  We will define a @code{\character} command
+that takes into account the needed translation, and uses the newly
+defined @code{\smallcaps} command:
+
+@verbatim
+#(def-markup-command (character paper props name) (string?)
+   "Print the character name in small caps, translated to the left and
+   top. Syntax: \\character #\"name\""
+   (interpret-markup paper props 
+    (markup "" #:translate (cons -4 2) #:smallcaps name)))
+@end verbatim
+
+There is one complication that needs explanation: texts above and below
+the staff are moved vertically to be at a certain distance (the
+@code{padding} property) from the staff and the notes. To make sure
+that this mechanism does not annihilate the vertical effect of our
+@code{#:translate}, we add an empty string (@code{""}) before the
+translated text.  Now the @code{""} will be put above the notes, and the
+@code{name} is moved in relation to that empty string. The net effect is
+that the text is moved to the upper left.
+
+The final result is as follows:
+@verbatim
+\score {
+    \notes { \fatText
+        c''^\markup \character #"Cleopatra"
+        e'^\markup \character #"Giulio Cesare"
+    }
+}
+@end verbatim
+
+@lilypond[raggedright]
+#(def-markup-command (smallcaps paper props str) (string?)
+   "Print the string argument in small caps. Syntax: \\smallcaps #\"string\""
+   (interpret-markup paper props
+    (make-line-markup
+     (map (lambda (s)
+            (if (= (string-length s) 0)
+                s
+                (markup #:large (string-upcase (substring s 0 1))
+                        #:translate (cons -0.6 0)
+                        #:tiny (string-upcase (substring s 1)))))
+          (string-split str #\Space)))))
+
+#(def-markup-command (character paper props name) (string?)
+   "Print the character name in small caps, translated to the left and
+   top. Syntax: \\character #\"name\""
+   (interpret-markup paper props 
+    (markup "" #:translate (cons -4 0) #:smallcaps name)))
+
+\score {
+    \notes { \fatText
+        c''^\markup \character #"Cleopatra"
+        e'^\markup \character #"Giulio Cesare"
+    }
+}
+@end lilypond
 
 
 
@@ -8446,20 +8579,20 @@ stretchable distances (``springs'') of differing lengths. Longer
 durations get more space, shorter durations get less.  The shortest
 durations get a fixed amount of space (which is controlled by
 @code{shortest-duration-space} in the @internalsref{SpacingSpanner} object). 
-/The longer the duration, the more space it gets: doubling a
+The longer the duration, the more space it gets: doubling a
 duration adds a fixed amount (this amount is controlled by
 @code{spacing-increment}) of space to the note.
 
 For example, the following piece contains lots of half, quarter and
 8th notes, the eighth note is followed by 1 note head width (NHW). 
 The quarter note is followed by 2 NHW, the half by 3 NHW, etc.
-@lilypond[fragment, verbatim, relative=1] c2 c4. c8 c4. c8 c4. c8 c8
+@lilypond[fragment,verbatim,relative=1] c2 c4. c8 c4. c8 c4. c8 c8
 c8 c4 c4 c4
 @end lilypond
 
 Normally, @code{shortest-duration-space} is set to 1.2, which is the
 width of a note head, and @code{shortest-duration-space} is set to
-2.0, meaning that the shortest note gets 2 NHW (2 times
+2.0, meaning that the shortest note gets 2 NHW (i.e. 2 times
 @code{shortest-duration-space}) of space. For normal notes, this space
 is always counted from the left edge of the symbol, so the shortest
 notes are generally followed by one NHW of space.
@@ -8475,7 +8608,7 @@ duration relative to the common shortest note.  So if we were to add
 only a few 16th notes to the example above, they would be followed by
 half a NHW:
 
-@lilypond[fragment, verbatim, relative=2]
+@lilypond[fragment,verbatim,relative=2]
  c2 c4. c8 c4. c16[ c] c4. c8 c8 c8 c4 c4 c4
 @end lilypond
 
@@ -8709,7 +8842,7 @@ score lines will stretch in order to fill the full page
 @cindex @code{interscorelinefill}
 
 If the variable @code{lastpagefill} is defined,
-@c fixme: this should only be done if lastpagefill == #t 
+@c fixme: this should only be done if lastpagefill= #t 
 systems are evenly distributed vertically on the last page.  This
 might produce ugly results in case there are not enough systems on the
 last page.  The @command{lilypond-book} command ignores
@@ -8783,6 +8916,13 @@ setting @code{instrumentEqualizer}.
 Many musically interesting effects, such as swing, articulation,
 slurring, etc., are not translated to MIDI.
 
+Since slurs are not interpreted, @code{\lyricsto} and
+@code{\addlyrics} sections will be interpreted wrongly.
+
+The MIDI output allocates a channel for each Staff, and one for global
+settings.  Hence, the MIDI file should not have more than 15 staves
+(or 14 if you do not use drums).
+
 
 @menu
 * MIDI block::