]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-metronome-marks-in-markup-mode.ly
Merge branch 'master' into lilypond/translation
[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.11.62"
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 \relative c' {
22   \tempo \markup {
23     \concat {
24       (
25       \smaller \general-align #Y #DOWN \note #"16." #1
26       " = "
27       \smaller \general-align #Y #DOWN \note #"8" #1
28       )
29     }
30   }
31   c1
32   c4 c' c,2
33 }