bug-lilypond
[Top][All Lists]
Advanced

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

RehearsalMark and Barline placement at the beginning of a line


From: Xavier Scheuer
Subject: RehearsalMark and Barline placement at the beginning of a line
Date: Mon, 7 Jun 2010 17:17:14 +0200

%% RehearsalMark at begin of line should not be printed above the Clef
%%
%% but instead like if there was an "invisible" BarLine just before the
%% note (i.e. after Clef and KeySignature).

\version "2.13.23"

%% BAD (current output)

\score {
  \relative c' {
    \repeat unfold 8 c1 \break
    \mark \default
    \repeat unfold 8 c1
  }
}


%% ALMOST GOOD RESULT
%% using a repeat to show where the "invisible" BarLine should be

%% but I'd like "A" to be on the same horizontal line as "B" by default
%% I think there should be a bigger space between the Clef and the
%% invisible or repeat Barline when the KeySignature has no accidentals
%% (NB: this is an issue about placement of "repeat" or "pseudo" BarLine
%% when at beginning of a line)
%%
%% see following output (adding a KeySignature with accidentals)

\score {
  \relative c' {
    \repeat unfold 8 c1 \break
    \repeat volta 2 {
      \mark \default
      \repeat unfold 4 c1
      \mark \default
      \repeat unfold 4 c1
    }
  }
}


%% REALLY GOOD

\score {
  \relative c' {
    \key a \major
    \repeat unfold 8 c1 \break
    \repeat volta 2 {
      \mark \default
      \repeat unfold 4 c1
      \mark \default
      \repeat unfold 4 c1
    }
  }
}



reply via email to

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