]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / printing-metronome-and-rehearsal-marks-below-the-staff.ly
index 95af261835da3e73f231683470d48bbad6fa7a98..afaa08b59fec0bdb5739655e4112ac649f0b61d4 100644 (file)
@@ -1,44 +1,13 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% 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.13.31"
+\version "2.18.0"
 
 \header {
-  lsrtags = "rhythms, expressive-marks, staff-notation, tweaks-and-overrides"
-
-%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
-  texidoces = "
-De forma predeterminada, las indicaciones metronómicas y las
-letras de ensayo se imprimen encima del pentagrama.  Para
-colocarlas debajo del pentagrama, simplemente ajustamos
-adecuadamente la propiedad @code{direction} de
-@code{MetronomeMark} o de @code{RehearsalMark}.
-
-"
-
-  doctitlees = "Impresión de indicaciones metronómicas y letras de ensayo debajo del pentagrama"
-
-
-
-%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
-  texidocde = "
-Normalerweise werden Metronom- und Übungszeichen über dem Notensystem ausgegeben.
-Um sie unter das System zu setzen, muss die @code{direction}-Eigenschaft
-von @code{MetronomeMark} oder @code{RehearsalMark} entsprechend verändert werden.
-
-"
-  doctitlede = "Metronom- und Übungszeichen unter das System setzen"
-
-%% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
-  texidocfr = "
-Les indications de tempo et les marques de repère s'impriment par défaut
-au-dessus de la portée.  Le fait de régler en conséquence la propriété
-@code{direction} des objets @code{MetronomeMark} ou @code{RehearsalMark}
-les placera au-dessous de la portée.
-
-"
-  doctitlefr = "Impression du métronome et des repères sous la portée"
-
+  lsrtags = "expressive-marks, rhythms, tweaks-and-overrides"
 
   texidoc = "
 By default, metronome and rehearsal marks are printed above the staff.
@@ -49,17 +18,19 @@ of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
   doctitle = "Printing metronome and rehearsal marks below the staff"
 } % begin verbatim
 
-\layout { ragged-right = ##f }
+\layout {
+  indent = 0
+  ragged-right = ##f
+}
 
 {
   % Metronome marks below the staff
-  \override Score.MetronomeMark #'direction = #DOWN
+  \override Score.MetronomeMark.direction = #DOWN
   \tempo 8. = 120
   c''1
 
   % Rehearsal marks below the staff
-  \override Score.RehearsalMark #'direction = #DOWN
+  \override Score.RehearsalMark.direction = #DOWN
   \mark \default
   c''1
 }
-