]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly
e2dab24ea3e0cb2e011b1b22a3524ceb06c0363f
[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.16"
5
6 \header {
7   lsrtags = "rhythms, expressive-marks, staff-notation, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Normalerweise werden Metronom- und Übungszeichen über dem Notensystem ausgegeben.
25 Um sie unter das System zu setzen, muss die @code{direction}-Eigenschaft
26 von @code{MetronomeMark} oder @code{RehearsalMark} entsprechend verändert werden.
27
28 "
29   doctitlede = "Metronom- und Übungszeichen unter das System setzen"
30 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
31   texidocfr = "
32 Les indications de tempo et les marques de repère s'impriment par défaut
33 au-dessus de la portée.  Le fait de régler en conséquence la propriété
34 @code{direction} des objets @code{MetronomeMark} ou @code{RehearsalMark}
35 les placera au-dessous de la portée.
36
37 "
38   doctitlefr = "Impression du métronome et des repères sous la portée"
39
40
41   texidoc = "
42 By default, metronome and rehearsal marks are printed above the staff.
43 To place them below the staff simply set the @code{direction} property
44 of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
45
46 "
47   doctitle = "Printing metronome and rehearsal marks below the staff"
48 } % begin verbatim
49
50 \layout { ragged-right = ##f }
51
52 {
53   % Metronome marks below the staff
54   \override Score.MetronomeMark #'direction = #DOWN
55   \tempo 8. = 120
56   c''1
57
58   % Rehearsal marks below the staff
59   \override Score.RehearsalMark #'direction = #DOWN
60   \mark \default
61   c''1
62 }
63