]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/compound-time-signatures.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / compound-time-signatures.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 = "rhythms"
11
12   texidoc = "
13 Odd 20th century time signatures (such as \"5/8\") can often be played
14 as compound time signatures (e.g. \"3/8 + 2/8\"), which combine two or
15 more inequal metrics.
16
17 LilyPond can make such music quite easy to read and play, by explicitly
18 printing the compound time signatures and adapting the automatic
19 beaming behavior.
20
21 "
22   doctitle = "Compound time signatures"
23 } % begin verbatim
24
25 \relative c' {
26   \compoundMeter #'((2 8) (3 8))
27   c8 d e fis gis
28   c8 fis, gis e d
29   c8 d e4 gis8
30 }