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.23.2"
8
9\header {
10  lsrtags = "rhythms"
11
12  texidoc = "
13Odd 20th century time signatures (such as \"5/8\") can often be played
14as compound time signatures (e.g. \"3/8 + 2/8\"), which combine two or
15more inequal metrics.
16
17LilyPond can make such music quite easy to read and play, by explicitly
18printing the compound time signatures and adapting the automatic
19beaming 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}
31