lilypond-user
[Top][All Lists]
Advanced

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

Re: extension fingerings, key sigs


From: William Rehwinkel
Subject: Re: extension fingerings, key sigs
Date: Wed, 21 Dec 2022 01:28:47 +0000
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.6.0

Dear Matt,


This snippet should answer both of your questions, let me know if you have any other questions about this.


Depending on exactly what you were intending to do, you may want to consider putting each exercise in a separate score block, like shown in the example. This avoids all problems with setting new time signatures showing on the previous lines, and will show you the time signature at the beginning of the line even if it is the same. The second score block shows how you can disable the time signature showing at the end of the line if you change it on the next system. The first score block shows you how you can type any text in the font style used for fingering indications.


Thanks,

-will

%----------

\version "2.24.0"

\paper {
    indent=0
    ragged-right=##f
}


%first line
\score {
    \relative c' {
        c8-\markup{\finger "1x2 4"} d e f g a b c
    }
}

%second line
\score {
    \relative c' {
        \override Score.TimeSignature.break-visibility = #begin-of-line-visible
        c8 d e f g a b c \break \time 3/4 c8 d e f g a
    }
}
%copy-paste as needed

\layout{}

%----------


On 12/20/22 20:02, Matthew Pierce wrote:
I am writing a scale page for my cello students. Since each line is a new scale, each line has a new key signature.

Two basic questions:

How do I keep the new key signature from also appearing at the end of the previous line?

Also, how can I write { 1 x 2 4 } in the fingering font, adding an "x" between the notes to signify the extension between "1" and "2"?

I am using version 22.2.2.

Thank you all,
Matt
--
William Rehwinkel

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

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