]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / printing-metronome-and-rehearsal-marks-below-the-staff.ly
index 979882b11cdc66f2626fd9f1f7a558c891d73233..4c563872b41e188604e7d401e58a765ee371e477 100644 (file)
@@ -1,44 +1,13 @@
-%% Do not edit this file; it is automatically
+%% 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.13.16"
+\version "2.17.6"
 
 \header {
-  lsrtags = "rhythms, expressive-marks, staff-notation, tweaks-and-overrides"
-
-%% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
-  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: d96023d8792c8af202c7cb8508010c0d3648899d
-  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: d78027a94928ddcdd18fd6534cbe6d719f80b6e6
-  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,17 @@ of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
   doctitle = "Printing metronome and rehearsal marks below the staff"
 } % begin verbatim
 
+
 \layout { 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
 }
-