lilypond-devel
[Top][All Lists]
Advanced

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

Re: fixing German's Wikipedia entry of LilyPond


From: Janek Warchoł
Subject: Re: fixing German's Wikipedia entry of LilyPond
Date: Sun, 12 Jan 2014 20:10:36 +0100

2014/1/12 pls <address@hidden>:
>
> On 12.01.2014, at 19:31, Phil Holmes <address@hidden> wrote:
>
>> ----- Original Message ----- From: "Phil Holmes" <address@hidden>
>>> Latest version is attached.  Needs dotted tuplet brackets, a bit of tidying
>>> of positioning, alternative time signature format, move of clef in LH of 2nd
>>> bar and I think it's done.
>>>
>>> Can anyone help with any of these?
>>
>>
>> Dotted tuplet brackets and positions tweaked.  Think this is good to go for 
>> now?\
>
> Here is a proposal for the positioning of the time signature:
> \version "2.18.0"
>
> \relative c'' {
>   \override Staff.TimeSignature #'font-size = #20
>   \override Staff.TimeSignature #'extra-offset = #'(0 . -20)
>   \numericTimeSignature
>   c
> }

Let's not use hard-coded offsets please, they are unlilypondish and
will break at first opportunity.  Rather, use a Dynamics context with
Time sig engraver like this:

meter =
\new Dynamics \with {
  \consists "Time_signature_engraver"
} {
  \override Dynamics.TimeSignature #'font-size = #6
  \time 2/8
  s4
  \time 3/8
  s4.*2
  \time 4/8
}

(and remove Time sig engraver from regular staves)

best,
J



reply via email to

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