lilypond-user
[Top][All Lists]
Advanced

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

Re: Appoggiatura help


From: Thomas Morley
Subject: Re: Appoggiatura help
Date: Fri, 30 Nov 2012 01:05:44 +0100

2012/11/30 Noeck <address@hidden>:
> Am 29.11.2012 23:56, schrieb Nick Payne:
>> \version "2.17.6"
>>
>> \relative c'' {
>>   \once \override Slur #'direction = #UP
>>   \appoggiatura f8 fis,
>>   \once \override Slur #'direction = #UP
>>   \shape #'(0.7 -2.5 0.5 -2.3 0.3 -3 0 -4) Slur \appoggiatura f'8 fis,
>     \once \override Slur #'direction = #UP
>     \shape #'((0.7 . -2.5) (0.5 . -2.3) (0.3 . -3) (0 . -4)) Slur
>     \appoggiatura f'8 fis,
>> }
>
> I think that's because the version that made it into LilyPond needs 4
> tuples (extra brackets and dots). That needs some extra typing but it is
> also a bit more logical.
>
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/lilypond-user


Two other suggestions:

(1)
Hackish and with little possibilities to manipulate anything:

\version "2.16.0"

\relative c' {
        \slurUp
        \appoggiatura { f'8 s }
        fis,8
}

(2)
Shaping the Slur with some overrides (looks nicer to me)

\version "2.16.0"

\relative c' {
        \slurUp
        \override Slur #'minimum-length = #2.5
        \shape Slur #'((1 . 0) (1 . 0) (0 . 0) (0 . 0))
        \once \override Slur #'details #'edge-attraction-factor = #1000
        \appoggiatura f'8
        fis,8
}

HTH,
  Harm



reply via email to

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