]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-metronome-marks-in-markup-mode.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: af3df3b7c6e062635bdccb739be41962969806a0
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
49 \relative c' {
50   \tempo \markup {
51     \concat {
52       (
53       \smaller \general-align #Y #DOWN \note #"16." #1
54       " = "
55       \smaller \general-align #Y #DOWN \note #"8" #1
56       )
57     }
58   }
59   c1
60   c4 c' c,2
61 }