lilypond-user
[Top][All Lists]
Advanced

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

Re: Modifying the initial clef sign.


From: David Kastrup
Subject: Re: Modifying the initial clef sign.
Date: Fri, 02 Feb 2018 17:54:04 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)

Peter Toye <address@hidden> writes:

> Trying to engrave a piece of piano music where the left hand starts in the 
> treble clef. The music I’m copying from has a bass clef at the start of the 
> piece, followed by a clef change immediately before the first note, which I 
> think was standard practice in the 19th century (but I'm willing to be told 
> otherwise in the 21st).  
>
> Is there any way of reproducing this? I tried the snippet below, but it 
> doesn't give me the bass clef sign. 
>
> \version "2.19.52"
>
> \language "english"
>
> \score {
>   \new Staff {
>  \clef "bass"
>   \time 4/4
>   \clef "treble"
>   c''2 c''
>
>
>  }
>
> }

You can try something like

\version "2.19.52"

\language "english"

\score {
  \new Staff {
    \time 4/4
    \clef "bass"
    \grace \omit r128
    \clef "treble"
    c''2 c''
 }

}
For some reason, using s instead of \omit r causes overlapping
notation.  I'd lean towards calling that a bug.

-- 
David Kastrup

reply via email to

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