]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-metronome-marks-in-markup-mode.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / creating-metronome-marks-in-markup-mode.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Se pueden crear indicaciones metronómicas nuevas en modo de
15 marcado, pero no cambian el tempo en la salida MIDI.
16
17 "
18   doctitlees = "Crear indicaciones metronómicas en modo de marcado"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Neue Metronombezeichnungen können als Textbeschriftung erstellt werden,
24 aber sie ändern nicht das Tempo für die MIDI-Ausgabe.
25
26 "
27
28   doctitlede = "Eine Metronombezeichnung als Textbeschriftung erstellen"
29
30 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
31   texidocfr = "
32 Vous pouvez créer des indications de tempo sous la forme d'étiquettes
33 textuelles -- des objets @code{markup} -- notamment des équivalences.
34 Cependant, elles n'apparaîtront pas dans le fichier MIDI.
35
36 "
37   doctitlefr = "Création d'une indication métronomique sous forme d'étiquette"
38
39
40   texidoc = "
41 New metronome marks can be created in markup mode, but they will not
42 change the tempo in MIDI output.
43
44 "
45   doctitle = "Creating metronome marks in markup mode"
46 } % begin verbatim
47
48 \relative c' {
49   \tempo \markup {
50     \concat {
51       (
52       \smaller \general-align #Y #DOWN \note #"16." #1
53       " = "
54       \smaller \general-align #Y #DOWN \note #"8" #1
55       )
56     }
57   }
58   c1
59   c4 c' c,2
60 }