]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tempo-without-a-metronome-mark.ly
Fix 546.
[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.13.1"
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 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
15   texidocde = "
16 Um das Tempo für die MIDI-Ausgabe zu ändern, ohne eine Tempoangabe in den
17 Noten auszugeben, kann die Metronombezeichnung unsichtbar gemacht werden:
18
19 "
20
21   doctitlede = "Das Tempo ohne Metronom-Angabe verändern"
22
23   lsrtags = "staff-notation"
24   texidoc = "To change the tempo in MIDI output without printing
25 anything, make the metronome mark invisible:"
26
27   doctitle = "Changing the tempo without a metronome mark"
28 } % begin verbatim
29
30
31 \score {
32   \new Staff \relative c' {
33     \tempo 4 = 160
34     c4 e g b
35     c4 b d c
36     \set Score.tempoHideNote = ##t
37     \tempo 4 = 96
38     d,4 fis a cis
39     d4 cis e d
40   }
41   \layout { }
42   \midi { }
43 }