lilypond-user
[Top][All Lists]
Advanced

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

Double Digit Fingering ie 10 11 12


From: bannersite
Subject: Double Digit Fingering ie 10 11 12
Date: Wed, 09 Mar 2011 03:56:18 +0000

It appears that double digit fingering is not supported in the shorthand version:

<f-10\3-\RH #2 > %error: syntax error, unexpected UNSIGNED

I found  a reference to using \markup as the long hand and a previous post referencing -\markup { \finger ". . ." } and ^\markup { \finger ". . ." }

So I tried without sucess:

<f-\markup { \finger "10" }\3-\RH #2 > %warning: cannot add text scripts to individual note heads

and

<f^\markup { \finger "10" }\3-\RH #2 > %warning: cannot add text scripts to individual note heads


The only way I could make it work was with:

<f\3-\RH #2 >^\markup { \finger "10" }

However this opened a whole bunch of formating issues for me. String number no longer over fingering, odd markings, and font issues.

Is there a way I'm missing that functions as <f-10\3-\RH #2 >.

Thanks Scott
____________________________________________________________________________________________________________________________

Here is the full code I'm using to debug formating issues occured in a larger item. (If we can't com up with a solution I'll post about those later)

\version "2.12.0"  % necessary for upgrading to future LilyPond versions.

# (define RH rightHandFinger)

\score

\new Staff {
    <f-9\3-\RH #2 >
   
    <f-\markup { \finger "10" }\3-\RH #2 > %warning: cannot add text scripts to individual note heads
   
    <f^\markup { \finger "10" }\3-\RH #2 > %warning: cannot add text scripts to individual note heads
   
    %<f-10\3-\RH #2 > %error: syntax error, unexpected UNSIGNED
   
    <f\3-\RH #2 >^\markup { \finger "10" }

     }

reply via email to

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