]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tempo-without-a-metronome-mark.ly
db7f7bd4c432df8246a71ade98b6240fe595ef96
[lilypond.git] / input / lsr / changing-the-tempo-without-a-metronome-mark.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 Para cambiar el tempo en la salida MIDI sin
8 imprimir nada, hacemos invisible la indicación metronómica:
9
10 "
11
12   doctitlees = "Cambiar el tempo sin indicación metronómica"
13
14   lsrtags = "staff-notation"
15   texidoc = "To change the tempo in MIDI output without printing
16 anything, make the metronome mark invisible:"
17
18   doctitle = "Changing the tempo without a metronome mark"
19 } % begin verbatim
20
21 \score {
22   \new Staff \relative c' {
23     \tempo 4 = 160
24     c4 e g b
25     c4 b d c
26     \set Score.tempoHideNote = ##t
27     \tempo 4 = 96
28     d,4 fis a cis
29     d4 cis e d
30   }
31   \layout { }
32   \midi { }
33 }