Next: , Up: Ligatures



3.15.9.1 White mensural ligatures

There is limited support for white mensural ligatures.

To engrave white mensural ligatures, in the paper block the Mensural_ligature_engraver has to be put into the Voice context, and remove the Ligature_bracket_engraver

         \paper {
             \context {
                 \VoiceContext
                 \remove Ligature_bracket_engraver
                 \consists Mensural_ligature_engraver
             }
         }

There is no additional input language to describe the shape of a white mensural ligature. The shape is rather determined solely from the pitch and duration of the enclosed notes. While this approach may take a new user a while to get accustomed, it has the great advantage that the full musical information of the ligature is known internally. This is not only required for correct MIDI output, but also allows for automatic transcription of the ligatures.

For example,

             \set Score.timing = ##f
             \set Score.defaultBarType = "empty"
             \override NoteHead #'style = #'neo_mensural
             \override Staff.TimeSignature   #'style = #'neo_mensural
             \clef "petrucci_g"
             \[ g\longa c\breve a\breve f\breve d'\longa \]
             s4
             \[ e1 f1 a\breve g\longa \]

[image of music]

Without replacing Ligature_bracket_engraver with Mensural_ligature_engraver, the same music transcribes to the following

[image of music]

Bugs

The implementation is experimental; it may output strange warnings or even crash in some cases or produce weird results on more complex ligatures.

Read comments on this page, or add one.

This page is for LilyPond-2.2.6 (stable-branch).

Report errors to <bug-lilypond@gnu.org>.