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