]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/forcing-measure-width-to-adapt-to-metronomemarks-width.ly
Run makelsr
[lilypond.git] / Documentation / snippets / forcing-measure-width-to-adapt-to-metronomemarks-width.ly
index e0a3770592e5c83f1c29184219fcb864d8dbf75d..ff5451109d16a98836c3eca2a8bf2ece4eafa871 100644 (file)
@@ -1,25 +1,26 @@
-%% 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.12.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.20
+
+\version "2.19.20"
 
 \header {
-  lsrtags = "staff-notation"
+  lsrtags = "staff-notation, workaround"
 
   texidoc = "
-By default, metronome marks do not influence horizontal spacing.  This
-has one downside: when using compressed rests, some metronome marks may
-be too close and therefore are printed vertically stacked, as
-demonstrated in the first part of this example.  This can be solved
-through a simple override, as shown in the second half of the example.
+By default, metronome marks do not influence horizontal spacing.   This
+can be solved through a simple override, as shown in the second half of
+the example.
 
 "
   doctitle = "Forcing measure width to adapt to MetronomeMark's width"
 } % begin verbatim
 
+
 example = {
   \tempo "Allegro"
   R1*6
@@ -30,14 +31,11 @@ example = {
 }
 
 {
-  \compressFullBarRests
-
-  \example
-
-  R1
-  R1
-
-  \override Score.MetronomeMark #'extra-spacing-width = #'(0 . 0)
-  \example
+  \compressMMRests {
+    \example
+    R1
+    R1
+    \override Score.MetronomeMark.extra-spacing-width = #'(-3 . 0)
+    \example
+  }
 }
-