[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: spacing with arpeggio
From: |
Thomas Morley |
Subject: |
Re: spacing with arpeggio |
Date: |
Mon, 25 Mar 2013 06:54:16 +0100 |
2013/3/25 Kieren MacMillan <address@hidden>:
> Hi all,
>
> This [reasonably-minimal] snippet shows a bug that's biting me a lot in my
> current engraving.
Hi Kieran,
adding \arpeggio to _all_ notes of the chord seems to solve it.
\version "2.17.12"
\language "english"
global = {
\time 6/8
\key d \dorian
s8*6*2
}
pfNotesUpper = \relative a' {
<<
{ \voiceOne
<a>8\arpeggio g a <bf>\arpeggio c d
<a e'>4.\arpeggio <a e'>4\arpeggio f'16 e
}
\new Voice { \voiceTwo
%% here !!
d,4.\arpeggio c\arpeggio
<cs d>\arpeggio <cs d>\arpeggio
}
>>
}
pfNotesLower = \relative a {
\clef bass
<<
{ \voiceOne
%% and here !!
a8\arpeggio d, e f4.\arpeggio
e\arpeggio e\arpeggio
}
\new Voice { \voiceTwo
<bf>\arpeggio <a>4\arpeggio g8
<a>4.\arpeggio <a>\arpeggio
}
>>
}
\score {
\new PianoStaff = "pf" \with { connectArpeggios = ##t } <<
\new Staff = "pfUpper" << \global \pfNotesUpper >>
\new Staff = "pfLower" << \global \pfNotesLower >>
>>
}
Cheers,
Harm