]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tempo-without-a-metronome-mark.ly
MusicXML: src-dir rather than srcdir.
[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.64"
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
22 \score {
23   \new Staff \relative c' {
24     \tempo 4 = 160
25     c4 e g b
26     c4 b d c
27     \set Score.tempoHideNote = ##t
28     \tempo 4 = 96
29     d,4 fis a cis
30     d4 cis e d
31   }
32   \layout { }
33   \midi { }
34 }