X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Frest-styles.ly;h=ebf8d91ffa166d07d27ae187096059209a0ae3cf;hb=2a4c5137870acf1b1fd2f3307d98973a52cfc8b9;hp=a2d56413647d3129506d38b47a509fa9a9fb6853;hpb=522f419e3ed3e09ecf834bbb5315ac1777ab13e0;p=lilypond.git diff --git a/Documentation/snippets/rest-styles.ly b/Documentation/snippets/rest-styles.ly index a2d5641364..ebf8d91ffa 100644 --- a/Documentation/snippets/rest-styles.ly +++ b/Documentation/snippets/rest-styles.ly @@ -1,51 +1,58 @@ -%% 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.16.0" +% 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" - } + } % begin verbatim + } \new Staff \relative c { \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 }