]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/reverting-default-beam-endings.ly
Doc-fr: updates texidocs
[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.dsi.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.16.0"
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
22 \relative c'' {
23   \time 12/8
24
25   % Default beaming
26   a8 a a a a a a a a a a a
27
28   % Set new values for beam endings
29   \set Score.beatStructure = #'(3 4 3 2)
30   a8 a a a a a a a a a a a
31 }