]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-staff-size.ly
Issue 5167/7: markup-partial regtest: use \markup function assignment
[lilypond.git] / Documentation / snippets / changing-the-staff-size.ly
index 21a06e1d0624f89e5fa0af4a4fcc8f5c6702016b..e605413ea25fdb1dcab9c52e151e7a4a1331a3cb 100644 (file)
@@ -1,22 +1,12 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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"
+\version "2.18.0"
 
 \header {
-%% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
-  texidocfr = "
-Bien que le meilleur moyen de définir la taille des portées consiste à
-utiliser @code{#(set-global-staff-size xx)}, une portée en particulier
-peut se redimensionner en affectant d'un coefficient ses propriétés
-@code{'staff-space} et @code{fontSize}.
-
-"
-  doctitlefr = "Modification de la taille d'une portée"
-
   lsrtags = "paper-and-layout, staff-notation, tweaks-and-overrides"
 
   texidoc = "
@@ -29,7 +19,6 @@ changed by scaling the properties @code{'staff-space} and
   doctitle = "Changing the staff size"
 } % begin verbatim
 
-
 <<
   \new Staff {
     \relative c'' {
@@ -39,10 +28,9 @@ changed by scaling the properties @code{'staff-space} and
   }
   \new Staff \with {
     fontSize = #-3
-    \override StaffSymbol #'staff-space = #(magstep -3)
+    \override StaffSymbol.staff-space = #(magstep -3)
   } {
     \clef bass
     c8 c c c c\f c c c
   }
 >>
-