]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-metronome-and-rehearsal-marks-below-the-staff.ly
MusicXML: src-dir rather than srcdir.
[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.11.64"
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   texidoc = "
20 By default, metronome and rehearsal marks are printed above the staff. 
21 To place them below the staff simply set the @code{direction} property
22 of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
23
24 "
25   doctitle = "Printing metronome and rehearsal marks below the staff"
26 } % begin verbatim
27
28 \layout { ragged-right = ##f }
29
30 {
31   % Metronome marks below the staff 
32   \override Score.MetronomeMark #'direction = #DOWN
33   \tempo 8. = 120
34   c''1
35
36   % Rehearsal marks below the staff
37   \override Score.RehearsalMark #'direction = #DOWN
38   \mark \default
39   c''1
40 }