Mats Bengtsson wrote:
The easiest way to automate it is probably to do something like
(assuming the piece repeats this pattern 12 times)

barlines = { \repeat 12 {s8*7 \bar ":" s8*7 \bar ":" s8*11 | }

This should of course be
barlines = { \repeat unfold 12 {s8*7 \bar ":" s8*7 \bar ":" s8*11 | }


which you can add in one of your staves (since a \bar statement
applies to all staves, you can add it anywhere):

\score{
  ...
  \new Staff <<
    \barlines
    \ordinaryMusicInThisStave
  >>
...
}

   /Mats

Hans Aberg wrote:

On 9 Aug 2005, at 00:50, Graham Percival wrote:

Apparently one just adds a few more "override-auto-beam-setting":
  \time 7/16
  #(override-auto-beam-setting '(end * * 7 16) 2 16)
  #(override-auto-beam-setting '(end * * 7 16) 4 16)
Sorry for bothering you with so simple matters.

Can one insert automated dotted bar-lines within the measure as well?



Not without some scheme code.  I suggest using manual barlines  instead.



OK. But it would nice to be able to automate it. It will be used for compound meters that will be repeated through the whole piece. For example, in the Bulgarian "Sedi Donka", one has 25 = 7 + 7 + 11, where 7 and 11 are also compound.

  Hans Aberg




_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user



--
=============================================
        Mats Bengtsson
        Signal Processing
        Signals, Sensors and Systems
        Royal Institute of Technology
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
        Fax:   (+46) 8 790 7260
        Email: [EMAIL PROTECTED]
        WWW: http://www.s3.kth.se/~mabe
=============================================


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to