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