]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/rest-styles.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / rest-styles.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.17.6"
8
9 \header {
10   lsrtags = "ancient-notation, rhythms, symbols-and-glyphs, tweaks-and-overrides"
11
12   texidoc = "
13 Rests may be used in various styles.
14
15
16
17
18 "
19   doctitle = "Rest styles"
20 } % begin verbatim
21
22
23 \layout {
24   indent = 0
25   \context {
26     \Staff
27     \remove "Time_signature_engraver"
28   }
29 }
30
31 \new Staff \relative c {
32   \cadenzaOn
33   \override Staff.Rest.style = #'mensural
34   r\maxima^\markup \typewriter { mensural }
35   r\longa r\breve r1 r2 r4 r8 r16 s32 s64 s128 s128
36   \bar ""
37
38   \override Staff.Rest.style = #'neomensural
39   r\maxima^\markup \typewriter { neomensural }
40   r\longa r\breve r1 r2 r4 r8 r16 s32 s64 s128 s128
41   \bar ""
42
43   \override Staff.Rest.style = #'classical
44   r\maxima^\markup \typewriter { classical }
45   r\longa r\breve r1 r2 r4 r8 r16 r32 r64 r128 s128
46   \bar ""
47
48   \override Staff.Rest.style = #'default
49   r\maxima^\markup \typewriter { default }
50   r\longa r\breve r1 r2 r4 r8 r16 r32 r64 r128 s128
51 }