]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-metronome-marks-in-markup-mode.ly
Add grammar to Notation Reference
[lilypond.git] / input / lsr / creating-metronome-marks-in-markup-mode.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   texidoces = "
7 Se pueden crear indicaciones metronómicas nuevas en modo de
8 marcado, pero no cambian el tempo en la salida MIDI.
9
10 "
11   doctitlees = "Crear indicaciones metronómicas en modo de marcado"
12
13 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
14   texidocde = "
15 Neue Metronombezeichnungen können als Textbeschriftung erstellt werden,
16 aber sie ändern nicht das Tempo für die MIDI-Ausgabe.
17
18 "
19
20   doctitlede = "Eine Metronombezeichnung als Textbeschriftung erstellen"
21
22   lsrtags = "staff-notation"
23   texidoc = "New metronome marks can be created in markup mode,
24 but they will not change the tempo in MIDI output."
25
26   doctitle = "Creating metronome marks in markup mode"
27 } % begin verbatim
28
29
30 \relative c' {
31   \tempo \markup {
32     \concat {
33       (
34       \smaller \general-align #Y #DOWN \note #"16." #1
35       " = "
36       \smaller \general-align #Y #DOWN \note #"8" #1
37       )
38     }
39   }
40   c1
41   c4 c' c,2
42 }