lilypond-user
[Top][All Lists]
Advanced

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

Re: change staff


From: Gianmaria Lari
Subject: Re: change staff
Date: Wed, 25 Jan 2017 23:31:18 +0100

Thank you, Malte and Noeck, it works perfectly.

I post here another solution, that is interesting because it doesn't use scheme and more easy to understand.

\version "2.19.54"
csl = { \change Staff = "left" }
csr = { \change Staff = "right" }

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

left = \fixed c' {
  \clef treble
  s2 
  s4 c_2
}

\score {
  \new PianoStaff
  <<
    \new Staff = "right" \right
    \new Staff = "left"  \left
  >>
  \layout { }
}

reply via email to

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