X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fautomatic-beam-subdivisions.ly;h=6cbf4b65485a36f9d135f78b9a0eecf381718dce;hb=37ca1f80bf5401accd17056938f4f7b2c147ddb2;hp=e5e9bb7e65cf76ae63e02bfee5b10baf720dd892;hpb=70cc70f3a6183472b93fc4c2b4c60cc0375b6d64;p=lilypond.git diff --git a/input/lsr/automatic-beam-subdivisions.ly b/input/lsr/automatic-beam-subdivisions.ly index e5e9bb7e65..6cbf4b6548 100644 --- a/input/lsr/automatic-beam-subdivisions.ly +++ b/input/lsr/automatic-beam-subdivisions.ly @@ -1,21 +1,34 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.35" +\version "2.11.49" \header { lsrtags = "rhythms" - texidoc = " -Lilypond can subdivide beams automatically. Set the property -subdivideBeams, and beams are subdivided at beat positions (as -specified in beat length) -" } -% begin verbatim -\relative{ b'32^"default"[ a g f c' b a g f e d' c b a g f ] - \set subdivideBeams = ##t - b32^"subdivision enabled"[ a g f c' b a g f e d' c b a g f ] - \set Score.beatLength = #(ly:make-moment 1 8) - b32^"beatLength 1 8"[ a g f c' b a g f e d' c b a g f ] - \set Score.beatLength = #(ly:make-moment 1 16) - b32^"beatLength 1 16"[ a g f c' b a g f e d' c b a g f ] + + texidoc = " +Beams can be subdivided automatically. By setting the property +@code{subdivideBeams}, beams are subdivided at beat positions (as +specified in @code{beatLength}). + +" + doctitle = "Automatic beam subdivisions" +} % begin verbatim +\score { + \new Staff \relative c'' { + << { + \voiceOne + \set subdivideBeams = ##t + b32[ a g f c' b a g b^"subdivide beams" a g f c' b a g] + \oneVoice } + \new Voice { + \voiceTwo + b32_"default"[ a g f c' b a g b a g f c' b a g] + } >> + \set beatLength = #(ly:make-moment 1 8) + b32^"beatLength 1 8"[ a g f c' b a g] + \set beatLength = #(ly:make-moment 1 16) + b32^"beatLength 1 16"[ a g f c' b a g] + } +}