lilypond-user
[Top][All Lists]
Advanced

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

Re: fingering and pedal marking questions


From: Knute Snortum
Subject: Re: fingering and pedal marking questions
Date: Tue, 24 Jan 2023 15:41:56 -0800

On Tue, Jan 24, 2023 at 1:07 PM Molly Preston <mollyprestonre@gmail.com> wrote:
>
> Hi! I'm doing a notation assignment.
>
> 1) How do I get the pedal markings to show up bracket style when using the 
> Dynamics context for it?
>
> 2) How do I get the fingering 1 in the second voice to move above the Staff?

1) Use score context for setting the pedal style
2) I would just put both fingerings in the first voice

Here's what I did with your score.  There were a lot of extraneous
things that I took out.

\version "2.22.2"

rightHand = {
  <<
  {
    % Put both fingerings here
    a'4-1-4 b' c'' dis''
  }
  \\
  {
    e'2
  }
  >>
}

leftHand = {
  \clef bass
  d2 c2 |
}

pedal = {
  % I wasn't sure what you wanted here
  s4\sustainOn s\sustainOff s\sustainOn s\sustainOff
}

\score {

  \new PianoStaff <<
    \new Staff = "rightHand" \rightHand
    \new Staff = "leftHand"  {  \leftHand  }
    % Set pedal style to score context
    \new Dynamics  { \set Score.pedalSustainStyle = #'bracket \pedal }
  >>

}

--
Knute Snortum



reply via email to

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