]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Doc-fr: typos in my last commits
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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
31   texidoc = "
32 By default, metronome and rehearsal marks are printed above the staff.
33 To place them below the staff simply set the @code{direction} property
34 of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
35
36 "
37   doctitle = "Printing metronome and rehearsal marks below the staff"
38 } % begin verbatim
39
40 \layout { ragged-right = ##f }
41
42 {
43   % Metronome marks below the staff
44   \override Score.MetronomeMark #'direction = #DOWN
45   \tempo 8. = 120
46   c''1
47
48   % Rehearsal marks below the staff
49   \override Score.RehearsalMark #'direction = #DOWN
50   \mark \default
51   c''1
52 }
53