lilypond-user
[Top][All Lists]
Advanced

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

Re: Four Bars per Line/System, again :)


From: Pierre Perol-Schneider
Subject: Re: Four Bars per Line/System, again :)
Date: Tue, 30 Sep 2014 08:56:32 +0200

Hi Marc,

2014-09-30 2:09 GMT+02:00 MarcM <address@hidden>:
 
any idea on how to make the theme "B" start on a new line?

Try \break ;)
Here's how I'd write it :

\version "2.19.11"

#(set-global-staff-size 22)
#(set-default-paper-size "letter")

\include "english.ly"

\paper {
  ragged-last-bottom = ##f
  ragged-bottom = ##t
}


myMusic = \relative c'' {
    \time 6/8
    \partial 8
    \mark \default
    \repeat volta 2 {
      g8 \repeat unfold 7 {  c8 c c c c c  }
      g4~g8 g4
    }
    \mark \default
    \break
    \repeat volta 2 {
      g8 \repeat unfold 7 {  c8 c c c c c  }
    }
    \alternative {
     { b c d  d e fs}
     { b, c d  d c b}
    }
}

\score {
  \new Staff {
    \once\override Score.RehearsalMark.self-alignment-X = #LEFT
    \myMusic
  }
  \layout {
    indent = 0
    system-count = 4
  }
}


HTH,
Pierre




reply via email to

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