]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-metronome-marks-in-markup-mode.ly
58fc661af611bd05f76f6d322249a1f2f8bf7ba1
[lilypond.git] / Documentation / snippets / creating-metronome-marks-in-markup-mode.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 = "staff-notation"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Se pueden crear indicaciones metronómicas nuevas en modo de
12 marcado, pero no cambian el tempo en la salida MIDI.
13
14 "
15   doctitlees = "Crear indicaciones metronómicas en modo de marcado"
16
17 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
18   texidocde = "
19 Neue Metronombezeichnungen können als Textbeschriftung erstellt werden,
20 aber sie ändern nicht das Tempo für die MIDI-Ausgabe.
21
22 "
23
24   doctitlede = "Eine Metronombezeichnung als Textbeschriftung erstellen"
25 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
26   texidocfr = "
27 Vous pouvez créer des indications de tempo sous la forme d'étiquettes
28 textuelles -- des objets @code{markup} -- notamment des équivalences.
29 Cependant, elles n'apparaîtront pas dans le fichier MIDI.
30
31 "
32   doctitlefr = "Création d'une indication métronomique sous forme d'étiquette"
33
34
35   texidoc = "
36 New metronome marks can be created in markup mode, but they will not
37 change the tempo in MIDI output.
38
39 "
40   doctitle = "Creating metronome marks in markup mode"
41 } % begin verbatim
42
43 \relative c' {
44   \tempo \markup {
45     \concat {
46       (
47       \smaller \general-align #Y #DOWN \note #"16." #1
48       " = "
49       \smaller \general-align #Y #DOWN \note #"8" #1
50       )
51     }
52   }
53   c1
54   c4 c' c,2
55 }