2014-07-05 16:32 GMT+02:00 Son_V <vincenzo.a...@gmail.com>:


> e1 ~  |  e2 r2 |
>
> I want on e1 "mi" (as text), and on e2 "bien".
>

You say "text" :
http://lilypond.org/doc/v2.18/Documentation/notation/writing-text

\version "2.18.2"

\relative c'' {
  e1~^"Mi" e2^"Bien" r
}

It's surely a humble question but I hadn'found the way to solve it an now I'
> tired. May you please help? Thanks.
>

If you mean "lyrics" :
http://lilypond.org/doc/v2.18/Documentation/notation/vocal-music

\version "2.18.2"

<<
  \new Voice = "melody"
  \relative c''{
    \set melismaBusyProperties = #'()
    e1~ e4 r
  }
  \new Lyrics \lyricsto "melody" {
    Mi bien
  }
>>

HTH,
Pierre
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to