Solfege in Lilypond
  • Adam WoodAdam Wood
    Posts: 6,482
    Does anyone know how to autogenerate solfege as lyrics in Lilypond?
  • a_f_hawkins
    Posts: 3,482
    I do not, there is a NoteNames engraver, and Lilypond can be told to use solfege names. But a search on "Lilypond solfege output" threw up old comments about a bug.
  • igneusigneus
    Posts: 394
    \version "2.24.0"
    notes = \relative c' { c4 d e f g a b c }
    \score {
    <<
    \notes
    \new NoteNames {
    \set printNotesLanguage = "italiano"
    \notes
    }
    >>
    }


    (Internally NoteNames aren't Lyrics, which must be taken in account when e.g. changing the default style.)