lilypond-user
[Top][All Lists]
Advanced

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

Re: Double Digit Fingering ie 10 11 12


From: Neil Puttock
Subject: Re: Double Digit Fingering ie 10 11 12
Date: Thu, 10 Mar 2011 18:09:26 +0000

On 9 March 2011 23:18, James Lowe <address@hidden> wrote:

> If this is true I can add an @knownissue in the Notation Reference at
> least. Unless anyone objects?

It's only true at the most basic level, i.e., using the bare digits,
since this is a parser limitation.  However, there's nothing stopping
you from rolling your own commands to bypass this:

ten =
#(make-music 'FingeringEvent
                     'digit 10)

finger =
#(define-music-function (parser location digit) (integer?)
     (make-music 'FingeringEvent
                        'digit digit))

\relative c' {
  c1\ten
  <c-\finger #10 e-\finger #12 >
}

Cheers,
Neil



reply via email to

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