lilypond-user
[Top][All Lists]
Advanced

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

Re: short first bar, long tempo indication


From: Kieren Richard MacMillan
Subject: Re: short first bar, long tempo indication
Date: Wed, 8 Feb 2006 10:08:06 -0500

Hi, Mats (et al.)

Exactly what kind of tempo indication do you have in mind? [...]
As always, I recommend to include some example .ly code
to clarify exactly what you ask about.

I finally reduced it to a minimal case -- looks like a full measure rest causes the first measure to extend to include the entire tempo indication. I've attached a sample below; the only difference between the two is that notesB has r8*6*4 and notesB has R8*6*4 (full measure rest).

Don't know if this is a "bug", but it's definitely a "watch out"!

Best,
Kieren.

___________________

\version "2.7.28"
\include "english.ly"

globalA =
{
        \key e \minor
        \time 6/8
        \set Score.rehearsalMarkAlignSymbol = #'time-signature
        \once \override Score.RehearsalMark #'X-offset = #0.0
        \mark \markup
        {
           \override #'(baseline-skip . 3)
\column { \bold "The Two Sources of the Moldau" "Allegro commodo non agitato" }
    }
        s8*6*4
}

notesA = \relative c''
{
        \clef treble
        r8*6*4
}


globalB =
{
        \key e \minor
        \time 6/8
        \set Score.rehearsalMarkAlignSymbol = #'time-signature
        \once \override Score.RehearsalMark #'X-offset = #0.0
        \mark \markup
        {
           \override #'(baseline-skip . 3)
\column { \bold "The Two Sources of the Moldau" "Allegro commodo non agitato" }
    }
        s8*6*4
}

notesB = \relative c''
{
        \clef treble
        R8*6*4
}


\score
{
        \new StaffGroup << \globalA \notesA >>
        \layout
        {
        }
}

\score
{
        \new StaffGroup << \globalB \notesB >>
        \layout
        {
        }
}




reply via email to

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