]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-metronome-marks-in-markup-mode.ly
Merge commit 'origin/master'
[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.4"
5
6 \header {
7   lsrtags = "staff-notation"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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
26   texidoc = "
27 New metronome marks can be created in markup mode, but they will not
28 change the tempo in MIDI output.
29
30 "
31   doctitle = "Creating metronome marks in markup mode"
32 } % begin verbatim
33
34 \relative c' {
35   \tempo \markup {
36     \concat {
37       (
38       \smaller \general-align #Y #DOWN \note #"16." #1
39       " = "
40       \smaller \general-align #Y #DOWN \note #"8" #1
41       )
42     }
43   }
44   c1
45   c4 c' c,2
46 }