]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tempo-without-a-metronome-mark.ly
Merge commit 'origin'
[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 %% Note: this file works from version 2.12.0
4 \version "2.13.1"
5
6 \header {
7   texidoces = "
8 Para cambiar el tempo en la salida MIDI sin
9 imprimir nada, hacemos invisible la indicación metronómica:
10
11 "
12
13   doctitlees = "Cambiar el tempo sin indicación metronómica"
14
15 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
16   texidocde = "
17 Um das Tempo für die MIDI-Ausgabe zu ändern, ohne eine Tempoangabe in den
18 Noten auszugeben, kann die Metronombezeichnung unsichtbar gemacht werden:
19
20 "
21
22   doctitlede = "Das Tempo ohne Metronom-Angabe verändern"
23
24   lsrtags = "staff-notation"
25   texidoc = "To change the tempo in MIDI output without printing
26 anything, make the metronome mark invisible:"
27
28   doctitle = "Changing the tempo without a metronome mark"
29 } % begin verbatim
30
31
32 \score {
33   \new Staff \relative c' {
34     \tempo 4 = 160
35     c4 e g b
36     c4 b d c
37     \set Score.tempoHideNote = ##t
38     \tempo 4 = 96
39     d,4 fis a cis
40     d4 cis e d
41   }
42   \layout { }
43   \midi { }
44 }