]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/compound-time-signatures.ly
Doc-fr: updates texidocs
[lilypond.git] / Documentation / snippets / compound-time-signatures.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.17.15
8 \version "2.17.15"
9
10 \header {
11   lsrtags = "rhythms"
12
13   texidoc = "
14 Odd 20th century time signatures (such as \\\"5/8\\\") can often be
15 played as compound time signatures (e.g. \\\"3/8 + 2/8\\\"), which
16 combine two or more inequal metrics. LilyPond can make such music quite
17 easy to read and play, by explicitly printing the compound time
18 signatures and adapting the automatic beaming behavior.
19
20 "
21   doctitle = "Compound time signatures"
22 } % begin verbatim
23
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 }