lilypond-user
[Top][All Lists]
Advanced

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

Re: new user....


From: Markus Schneider
Subject: Re: new user....
Date: Mon, 24 Jul 2006 23:06:40 +0200

Hi confrey,

> - how can I choose the width of a measure?
Look here:
http://lilypond.org/doc/v2.8/Documentation/user/lilypond.html#Proportional-notation

> - how can I choose the number of measure for staff?
see below.

Markus

%%% Begin Snippet
\version "2.8.4"
global = {
  \hideNotes
  \repeat unfold 5 {
    s1 |
    s1 |
    s1 |
    s1 |
  \break
  }
}

music = \relative c' {
  | a4 b c d
  | \times 2/3 { a4 b c } \times 2/3 { a4 b c }
  | a8 b c d a8 b c d
  | \times 2/3 { a8 b c } \times 2/3 {d a8 b } \times 2/3 { c d c } \times
2/3 {d a8 b }

}

\score { {
  \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
  \new Staff
  <<
    \global
    \music
  >>
  }
  \layout {
    indent = 0\cm
  }
}
%%% End Snippet







reply via email to

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