]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-beam-thickness-and-spacing.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / changing-beam-thickness-and-spacing.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "tweaks-and-overrides"
11
12   texidoc = "
13 To make beams thicker or thinner alter the @code{Beam.beam-thickness}
14 property.  To adjust the spacing between beams alter the
15 @code{Beam.length-fraction} property.
16
17 "
18   doctitle = "Changing beam thickness and spacing"
19 } % begin verbatim
20
21 \relative f' {
22   \time 1/8
23   \override Beam.beam-thickness = #0.4
24   \override Beam.length-fraction = #0.8
25   c32 c c c
26   \revert Beam.beam-thickness  % 0.48 is default thickness
27   \revert Beam.length-fraction  % 1.0 is default spacing
28   c32 c c c
29   \override Beam.beam-thickness = #0.6
30   \override Beam.length-fraction = #1.3
31   c32 c c c
32 }