]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-metronome-marks-in-markup-mode.ly
LSR: Update.
[lilypond.git] / input / lsr / creating-metronome-marks-in-markup-mode.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.3"
4
5 \header {
6   lsrtags = "staff-notation"
7
8   texidoces = "
9 Se pueden crear indicaciones metronĂ³micas nuevas en modo de
10 marcado, pero no cambian el tempo en la salida MIDI.
11
12 "
13   doctitlees = "Crear indicaciones metronĂ³micas en modo de marcado"
14
15
16   texidoc = "
17 New metronome marks can be created in markup mode, but they will not
18 change the tempo in MIDI output.
19
20 "
21   doctitle = "Creating metronome marks in markup mode"
22 } % begin verbatim
23
24 \relative c' {
25   \tempo \markup {
26     \concat {
27       (
28       \smaller \general-align #Y #DOWN \note #"16." #1
29       " = "
30       \smaller \general-align #Y #DOWN \note #"8" #1
31       )
32     }
33   }
34   c1
35   c4 c' c,2
36 }