X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fprinting-metronome-and-rehearsal-marks-below-the-staff.ly;h=afaa08b59fec0bdb5739655e4112ac649f0b61d4;hb=1f7e785d25b62afbf2ed3119a9874010e79b9b12;hp=3b68c918fd5a654e731ebe83e7f198553059556e;hpb=58933e3e40e9cfbdc70b846bc808c723e053f7b3;p=lilypond.git diff --git a/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly b/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly index 3b68c918fd..afaa08b59f 100644 --- a/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly +++ b/Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly @@ -1,47 +1,13 @@ %% 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 { - lsrtags = "expressive-marks, tweaks-and-overrides, rhythms" - -%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa - 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: af3df3b7c6e062635bdccb739be41962969806a0 - 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. @@ -52,18 +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 } -