]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / printing-metronome-and-rehearsal-marks-below-the-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "rhythms, expressive-marks, staff-notation, tweaks-and-overrides"
7
8   texidoces = "
9 De forma predeterminada, las indicaciones metronómicas y las
10 letras de ensayo se imprimen encima del pentagrama.  Para
11 colocarlas debajo del pentagrama, simplemente ajustamos
12 adecuadamente las propiedades @code{side-axis} y @code{direction}
13 de @code{MetronomeMark} o de @code{RehearsalMark}.
14
15 "
16
17   doctitlees = "Impresión de indicaciones metronómicas y letras de ensayo debajo del pentagrama"
18
19   
20 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
21   texidocde = "
22 Normalerweise werden Metronom- und Übungszeichen über dem Notensystem ausgegeben.
23 Um sie unter das System zu setzen, muss die @code{direction}-Eigenschaft
24 von @code{MetronomeMark} oder @code{RehearsalMark} entsprechend verändert werden.
25
26 "
27   doctitlede = "Metronom- und Übungszeichen unter das System setzen"
28
29   texidoc = "
30 By default, metronome and rehearsal marks are printed above the staff. 
31 To place them below the staff simply set the @code{direction} property
32 of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
33
34 "
35   doctitle = "Printing metronome and rehearsal marks below the staff"
36 } % begin verbatim
37
38 \layout { ragged-right = ##f }
39
40 {
41   % Metronome marks below the staff 
42   \override Score.MetronomeMark #'direction = #DOWN
43   \tempo 8. = 120
44   c''1
45
46   % Rehearsal marks below the staff
47   \override Score.RehearsalMark #'direction = #DOWN
48   \mark \default
49   c''1
50 }