int(0) array(11) { [0]=> string(93) "Running as unit: run-p323444-i323445.service; invocation ID: 5e4f035cdeaa4d80a065001b9eb56ced" [1]=> string(60) "Changing working directory to: `/tmp/lilywiki-tmp5b7a64ae90'" [2]=> string(48) "Processing `/tmp/lilywiki-tmp5b7a64ae90/file.ly'" [3]=> string(10) "Parsing..." [4]=> string(21) "Interpreting music..." [5]=> string(34) "Preprocessing graphical objects..." [6]=> string(36) "Finding the ideal number of pages..." [7]=> string(26) "Fitting music on 1 page..." [8]=> string(18) "Drawing systems..." [9]=> string(30) "Layout output to `file.svg'..." [10]=> string(43) "Success: compilation successfully completed" } Manually connecting groups of beamed notes with a single beam - LilyPond wiki Jump to content

Manually connecting groups of beamed notes with a single beam

From LilyPond wiki

Groups of non-periodic beat structure beamed notes can be connected manually with a settable number of beams using the stemRightBeamCount and stemLeftBeamCount properties.

\version "2.24.0"

%% http://lsr.di.unimi.it/LSR/Item?id=927
% see also http://lsr.di.unimi.it/LSR/Item?id=2

%=> http://lilypond.1069038.n5.nabble.com/Beam-subdivided-at-non-periodic-intervals-td164174.html

\relative c''''{
  \time 4/4
  \key g \minor
  \ottava #1
  ees16[ 
  \set stemRightBeamCount = #1
  d
  \set stemLeftBeamCount = #1
  f ees
  \set stemRightBeamCount = #1
  d
  \set stemLeftBeamCount = #1
  c b d
  \set stemRightBeamCount = #1
  c
  \set stemLeftBeamCount = #1
  bes a g
  \set stemRightBeamCount = #1
  fis]
  \bar "!"
}