79592512

Date: 2025-04-25 12:29:52
Score: 0.5
Natty:
Report link

Instead of explicitly making each verse of lyrics in parallel (with the <<>> structure inside the \staff block), preceded the \staff block with consecutive \addlyrics blocks.


Inter-syllable hyphenation should be written with two dashes: --. These will be visible when the horizontal spacing allows, but disappear when the syllable are close together.

A single underscore _ can be used to skip a note for a melisma. Extender lines are typed with two underscores __.

\version "2.24.1"

\new Staff {
    \key e \major
    \time 3/4
    \relative c'' {
        e4 e8 cis \tuplet 3/2 { dis dis dis } |
        e8 e e2 |
        a8 a a a \tuplet 3/2 { gis gis a } |
    }   
}
\addlyrics { 
    Ci -- bo~e be -- van -- da di 
    vi -- _ ta, 
    bal -- sa -- mo, __ _ ves -- te, di
}
\addlyrics {
    Cris -- to __ _ Ver -- bo del 
    Pa -- _ dre, 
    re __ _ _ glo -- rio -- so fra
}

Image generated from above code, similar to the image in the question, but with some noticeable differences:  1. The melismas in the second verse are rendering.  2. Inter-syllable hyphens are smaller or unseen.  3. There is a key signature (E major) and time signature is (3/4).

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Elements In Space