]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/reverting-default-beam-endings.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / reverting-default-beam-endings.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.19.40"
8
9 \header {
10   lsrtags = "rhythms, version-specific"
11
12   texidoc = "
13 To typeset beams grouped @code{3-4-3-2} in 12/8 it is necessary first
14 to override the default beam endings  in 12/8, and then to set up the
15 new beaming endings:
16
17 "
18   doctitle = "Reverting default beam endings"
19 } % begin verbatim
20
21 \relative c'' {
22   \time 12/8
23
24   % Default beaming
25   a8 a a a a a a a a a a a
26
27   % Set new values for beam endings
28   \set Score.beatStructure = 3,4,3,2
29   a8 a a a a a a a a a a a
30 }