]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-metronome-and-rehearsal-marks-below-the-staff.ly
f8fccee29850c1f2e83d5925e9f78c55604a8dc5
[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 %% Translation of GIT committish: dff50e8e1d3134657a6b6203b9c93826dc4cef65
9   texidoces = "
10 De forma predeterminada, las indicaciones metronómicas y las
11 letras de ensayo se imprimen encima del pentagrama.  Para
12 colocarlas debajo del pentagrama, simplemente ajustamos
13 adecuadamente las propiedades @code{side-axis} y @code{direction}
14 de @code{MetronomeMark} o de @code{RehearsalMark}.
15
16 "
17
18   doctitlees = "Impresión de indicaciones metronómicas y letras de ensayo debajo del pentagrama"
19
20   
21 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
22   texidocde = "
23 Normalerweise werden Metronom- und Übungszeichen über dem Notensystem ausgegeben.
24 Um sie unter das System zu setzen, muss die @code{direction}-Eigenschaft
25 von @code{MetronomeMark} oder @code{RehearsalMark} entsprechend verändert werden.
26
27 "
28   doctitlede = "Metronom- und Übungszeichen unter das System setzen"
29
30   texidoc = "
31 By default, metronome and rehearsal marks are printed above the staff. 
32 To place them below the staff simply set the @code{direction} property
33 of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
34
35 "
36   doctitle = "Printing metronome and rehearsal marks below the staff"
37 } % begin verbatim
38
39 \layout { ragged-right = ##f }
40
41 {
42   % Metronome marks below the staff 
43   \override Score.MetronomeMark #'direction = #DOWN
44   \tempo 8. = 120
45   c''1
46
47   % Rehearsal marks below the staff
48   \override Score.RehearsalMark #'direction = #DOWN
49   \mark \default
50   c''1
51 }
52