summaryrefslogtreecommitdiff
path: root/Documentation/snippets/compound-time-signatures.ly
blob: 9b1a047a5ba661b2b33af04aced1a253d84383b2 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
% DO NOT EDIT this file manually; it is automatically
% generated from Documentation/snippets/new
% Make any changes in Documentation/snippets/new/
% and then run scripts/auxiliar/makelsr.py
%
% This file is in the public domain.
%% Note: this file works from version 2.17.15
\version "2.17.15"

\header {
  lsrtags = "rhythms"

  texidoc = "
Odd 20th century time signatures (such as \\\"5/8\\\") can often be
played as compound time signatures (e.g. \\\"3/8 + 2/8\\\"), which
combine two or more inequal metrics. LilyPond can make such music quite
easy to read and play, by explicitly printing the compound time
signatures and adapting the automatic beaming behavior.

"
  doctitle = "Compound time signatures"
} % begin verbatim


\relative c' {
  \compoundMeter #'((2 8) (3 8))
  c8 d e fis gis
  c8 fis, gis e d
  c8 d e4 gis8
}