Am 25.01.2017 um 14:38 schrieb SoundsFromSound:
> Do you know how to fix them?

Hi,

you need staves named "right" and "left" for this to work:


\version "2.19.50"

l =
#(define-music-function (music) (ly:music?)
   #{
     \change Staff = "left"
     #music
     \change Staff = "right"
   #})

right = \fixed c' {
  \clef treble
  \time 2/4
  g8-4 \l g_4 e-3 \l e_3
  g8-4 \l g_4 e4-2
  \bar "|."
}

% the new part:
\new PianoStaff <<
  \new Staff = right \right
  \new Staff = left { \clef bass s1 }
>>

HTH,
Joram

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

Reply via email to