lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: The lyrics under the dynamics.


From: Павел Буданов
Subject: Re: The lyrics under the dynamics.
Date: Tue, 29 Jan 2019 02:26:50 +0300

It's magnificent! Thank you very much!


29.01.2019, 02:03, "Valentin Villenave" <address@hidden>:

On 1/28/19, Павел Буданов <address@hidden> wrote:

 Hello everybody! I want to put the lyrics under the dynamics. What is the
 best way to do this?


Greetings,
you probably need to add a Dynamics context above your staff and your
lyrics. You can fill this context by typing all your dynamics in it,
with spacer rests for example:

\new Dynamics { s1\p s1\< s1\! }

… Or if you have already entered all your dynamics with the notes, you
can just prevent them from being printed below (or above) the staff by
removing the engraver linked to your Voice, and just use the same
music in the Dynamics context (where the notes won’t be printed, only
the dynamics). Here’s an example:

%%%%%%%%%%%

music = {b1\< b\> b\p}

<<
  \new Dynamics \music
  \new Staff = "staff" \music
  \addlyrics {
    \set Lyrics . alignAboveContext = "staff"
    bla bla bla
  }



\layout {
  \context {
    \Voice
    \remove Dynamic_engraver
  }
  \context {
    \Dynamics
    \remove Script_engraver
    \remove Text_engraver
  }
}

%%%%%%%%%%%%%%%

Cheers and good luck!

V.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]