lilypond-user
[Top][All Lists]
Advanced

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

Re: arpeggio and finger


From: Nick Payne
Subject: Re: arpeggio and finger
Date: Fri, 19 Aug 2011 06:41:26 +1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20110812 Thunderbird/6.0

On 18/08/11 23:54, Mario Moles wrote:

Hi to all!

In this example the chord with \arpeggio and finger: collision among arpeggio and rest.

But without finger no collision?

Any idea?

Has always been a problem ever since I started using Lilypond. I keep a music function to use with arpeggios and fingering:

\version "2.15.8"

arpfinger = #(define-music-function (parser location pad) (number?) #{
    \once \override Staff.Arpeggio #'direction = #RIGHT
    \once \override Staff.Arpeggio #'padding = #$pad
#})

global = {
\key a \major
\time 2/4
}

cGO = \relative c {
\global
<a'-1>8 b\rest \arpeggioArrowUp \arpfinger #-2.5 <a cis e a>\arpeggio b\rest|\bar "|."
}

cGT = \relative c {
\global
\set fingeringOrientations = #'(right)
a8 a\rest <a e'-3>\arpeggio a\rest|
}

\book {
\score {
\new Staff \with {
\consists "Span_arpeggio_engraver"
midiInstrument = "acoustic guitar (nylon)"
} { \clef "treble_8" \set Staff.connectArpeggios = ##t << \cGO \\ \cGT >> }
\layout { indent=5 }
}
}


reply via email to

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