Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
Yes, that does it. Thanks! -- Knute Snortum On Sat, Nov 7, 2020 at 2:38 PM damianlegassick wrote: > > urgh > > and you'll have to add > > \once \override Dots.stencil = ##f > > just before the gis8. > > Damian > > On 7 November 2020 at 22:33, damianlegassick wrote: > > fiddly one this > > \ve

Re: Change staff and cross staff

2020-11-07 Thread Lukas-Fabian Moser
Hi Knute, Am 07.11.20 um 20:02 schrieb Knute Snortum: Here's a better MWE with my try using voices in the left hand: %%% Start \version "2.20.0" \language "english" staffUp = \change Staff = "upper" staffDown = \change Staff = "lower" rh = \relative c' { s8. \crossStaff e16 } lh = \rela

Re: Change staff and cross staff

2020-11-07 Thread damianlegassick
urgh and you'll have to add \once \override Dots.stencil = ##f just before the gis8. Damian On 7 November 2020 at 22:33, damianlegassick wrote: fiddly one this \version "2.21.7" \layout { \context { \PianoStaff \consists #Span_stem_engraver } } rhmusic = { \time 3/4 \key e \major \

Re: Change staff and cross staff

2020-11-07 Thread damianlegassick
fiddly one this \version "2.21.7" \layout { \context { \PianoStaff \consists #Span_stem_engraver } } rhmusic = { \time 3/4 \key e \major \change Staff = "lower" \stemUp 8[ r16 \change Staff = "upper" e'16] } lhmusic = { \key e \major \clef "bass" << { \once \omit Stem \once \omit Beam \slurD

Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
Oh, this is so close! The snippet provided doesn't have the slur from the lower g sharp to the b in it, so I tried adding it. The b is in the lower hand so I tried slurring to the e and then use \shape to fix it, but it produces a programming error. Here's the modified snippet... %%% Start \ver

Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
That looks good! Thanks! -- Knute Snortum On Sat, Nov 7, 2020 at 11:09 AM damianlegassick wrote: > > Try this for starters > > \version "2.21.7" > > \layout { \context { \PianoStaff \consists #Span_stem_engraver } } > > rhmusic = { > time 3/4 \key e \major > \change Staff = "lower" > \stemUp 8

Re: Change staff and cross staff

2020-11-07 Thread damianlegassick
Try this for starters \version "2.21.7" \layout { \context { \PianoStaff \consists #Span_stem_engraver } } rhmusic = { time 3/4 \key e \major \change Staff = "lower" \stemUp 8[ r16 \change Staff = "upper" e'16] } lhmusic = { \key e \major \clef "bass" << { s8. \crossStaff {b16} } \\ { e,4 } >

Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
Here's a better MWE with my try using voices in the left hand: %%% Start \version "2.20.0" \language "english" staffUp = \change Staff = "upper" staffDown = \change Staff = "lower" rh = \relative c' { s8. \crossStaff e16 } lh = \relative c' { \clef bass << { 8[ r16 b] } \\ { e,,4 } >> }