lilypond-user
[Top][All Lists]
Advanced

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

Re: Changing Staffs


From: Ben
Subject: Re: Changing Staffs
Date: Wed, 1 Aug 2018 13:13:13 -0400
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.0

On 8/1/2018 12:51 PM, Amir Teymuri wrote:
Hello,

How can i change a Staff for instance from a noraml one to a
RhythmicStaff and then set back to the noraml Staff?

Greetings,
Amir

Something like this what you mean?

\version "2.19.81"

global = {
\key c \major
\numericTimeSignature
\time 4/4
\tempo "Slow"
}

right = \relative c'' {
\global
c4 d e f |
\stopStaff
\override Staff.StaffSymbol.line-positions = #'(-8)
\override NoteHead.style = #'cross
\startStaff
\repeat unfold 3 \relative {b'4 b b b} | %% you can probably also change to drummode here
\stopStaff
\revert Staff.StaffSymbol.line-count
\revert Staff.StaffSymbol.line-positions
\revert NoteHead.style
\startStaff
\notemode {
c4 f g f
}
}
left = \relative c' {
\global
\clef bass
c,4 d e f |\bar ""
\stopStaff
s1 | s1 | s1 | \bar ""
\startStaff
c4 f g f
}
\new PianoStaff <<
\right
\left
>>

reply via email to

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