]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-metronome-and-rehearsal-marks-below-the-staff.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "rhythms, expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
33   texidocfr = "
34 Les indications de tempo et les marques de repère s'impriment par défaut
35 au-dessus de la portée.  Le fait de régler en conséquence la propriété
36 @code{direction} des objets @code{MetronomeMark} ou @code{RehearsalMark}
37 les placera au-dessous de la portée.
38
39 "
40   doctitlefr = "Impression du métronome et des repères sous la portée"
41
42
43   texidoc = "
44 By default, metronome and rehearsal marks are printed above the staff.
45 To place them below the staff simply set the @code{direction} property
46 of @code{MetronomeMark} or @code{RehearsalMark} appropriately.
47
48 "
49   doctitle = "Printing metronome and rehearsal marks below the staff"
50 } % begin verbatim
51
52 \layout { ragged-right = ##f }
53
54 {
55   % Metronome marks below the staff
56   \override Score.MetronomeMark #'direction = #DOWN
57   \tempo 8. = 120
58   c''1
59
60   % Rehearsal marks below the staff
61   \override Score.RehearsalMark #'direction = #DOWN
62   \mark \default
63   c''1
64 }
65