]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/rest-styles.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / rest-styles.ly
index 10e866d3df679d6c48f1262358d6384cc7333b40..dc6645b4b1b9336c817c383570be304fe9f680af 100644 (file)
@@ -1,51 +1,51 @@
-%% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
-%% and then run scripts/auxiliar/makelsr.py
-%%
-%% This file is in the public domain.
-\version "2.14.2"
+% 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.19.16
+\version "2.19.16"
 
 \header {
   lsrtags = "ancient-notation, rhythms, symbols-and-glyphs, tweaks-and-overrides"
 
   texidoc = "
 Rests may be used in various styles.
-
-
-
-
 "
   doctitle = "Rest styles"
 } % begin verbatim
 
 
-\layout {
-  indent = 0
-  \context {
-    \Staff
-    \remove "Time_signature_engraver"
-  }
-}
-
 \new Staff \relative c {
+  \omit Score.TimeSignature
   \cadenzaOn
-  \override Staff.Rest #'style = #'mensural
+
+  \override Staff.Rest.style = #'mensural
   r\maxima^\markup \typewriter { mensural }
   r\longa r\breve r1 r2 r4 r8 r16 s32 s64 s128 s128
   \bar ""
+  \break
 
-  \override Staff.Rest #'style = #'neomensural
+  \override Staff.Rest.style = #'neomensural
   r\maxima^\markup \typewriter { neomensural }
   r\longa r\breve r1 r2 r4 r8 r16 s32 s64 s128 s128
   \bar ""
+  \break
 
-  \override Staff.Rest #'style = #'classical
+  \override Staff.Rest.style = #'classical
   r\maxima^\markup \typewriter { classical }
   r\longa r\breve r1 r2 r4 r8 r16 r32 r64 r128 s128
   \bar ""
+  \break
+
+  \override Staff.Rest.style = #'z
+  r\maxima^\markup \typewriter { z-style }
+  r\longa r\breve r1 r2 r4 r8 r16 r32 r64 r128 s128
+  \bar ""
+  \break
 
-  \override Staff.Rest  #'style = #'default
+  \override Staff.Rest.style = #'default
   r\maxima^\markup \typewriter { default }
   r\longa r\breve r1 r2 r4 r8 r16 r32 r64 r128 s128
 }