]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-metronome-marks-in-markup-mode.ly
Merge commit 'origin' into beamlets2
[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.12.0"
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
14   lsrtags = "staff-notation"
15   texidoc = "New metronome marks can be created in markup mode,
16 but they will not change the tempo in MIDI output."
17
18   doctitle = "Creating metronome marks in markup mode"
19 } % begin verbatim
20
21
22 \relative c' {
23   \tempo \markup {
24     \concat {
25       (
26       \smaller \general-align #Y #DOWN \note #"16." #1
27       " = "
28       \smaller \general-align #Y #DOWN \note #"8" #1
29       )
30     }
31   }
32   c1
33   c4 c' c,2
34 }