Skip to content

Instantly share code, notes, and snippets.

@devonlepage
Created June 2, 2017 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devonlepage/6533ca0b207ccd5084920efd5ddb6359 to your computer and use it in GitHub Desktop.
Save devonlepage/6533ca0b207ccd5084920efd5ddb6359 to your computer and use it in GitHub Desktop.
Duration dot error with shifted notes
\version "2.19.40"
\paper {
ragged-last = ##f
indent = 0
}
voiceFirst = {
<es as>2. |
% m. 36
% -----
\clef "treble"
<ges' bes' des''>2.~\arpeggio |
<ges' bes' des''>2. |
<ges' bes' des''>2.~ |
<ges' bes' des''>4 r4 r4 |
\bar "|."
}
voiceSecond = {
s2. |
% m. 36
% -----
\clef "treble" <ges des'>2.~\arpeggio |
<ges des'>2. |
<ges des'>2.~ |
<ges des'>4 s2 |
\bar "|."
}
voiceThird = {
s2. |
% m. 36
% -----
\clef "treble" s2. |
\once \override NoteColumn.force-hshift = #2.5
\once \override Arpeggio.padding = #0.25
<des'' des'>4\arpeggio-- r4 r4 |
s2. |
s2. |
\bar "|."
}
\new Staff \with { \consists "Span_arpeggio_engraver" }
<<
\set Staff.connectArpeggios = ##t
\clef "bass"
\time 3/4
\key ges \major
\new Voice { \voiceOne \voiceFirst }
\new Voice { \voiceTwo \voiceSecond }
\new Voice { \voiceThree \voiceThird }
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment