bug-lilypond
[Top][All Lists]
Advanced

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

Lyrics, Dynamics staff & anacrusis cause misplaced tempo mark


From: Mark D . Blackwell
Subject: Lyrics, Dynamics staff & anacrusis cause misplaced tempo mark
Date: Fri, 3 Aug 2012 02:19:28 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

> I'm not top posting.

\version "2.14.2"

% Problem: the tempo mark is misplaced, just below the previous section.
% The problem seems to occur when lyrics, a tempo mark, a Dynamics staff, and
anacrusis are combined.

% * The tempo mark is quite close to the previous section's chord names.
% * There is a big space below the tempo mark.
% * The problem doesn't happen when the tempo is set in the ChoirStaff, only if
it's set in the Dynamics staff.

section = {
s4 | s2. \bar "||"
}

\book {
  \paper {
    #(set-paper-size "a7")
    ragged-last-bottom = ##f % Prevent too-close systems on last page.   %%
REMOVAL FIXES PROBLEM.
  }
  \score {
    << % Stack of staves
      \new Dynamics {   %% REMOVAL FIXES PROBLEM.
        \partial 4   %% REMOVAL FIXES PROBLEM.
        \section \break

        \tempo "Adagio (too high)"   %% MOVING TO SOPRANO NOTES FIXES PROBLEM.
        \section \pageBreak
      }

      \new ChoirStaff
        \new Staff
          \new Voice = "Soprano"
            \relative c' {
              \partial 4
              c4 | c2.
                        % \bar "||" \break
                        % \tempo "Adagio (too high)"
              c4 | c2.
                        % \bar "||" \pageBreak
            }
      \new Lyrics \lyricsto "Soprano" \lyricmode { blah blah  blah blah }   %%
REMOVAL FIXES PROBLEM (SORT-OF).

    >> % (Stack of staves end)
  } % score
} % book





reply via email to

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