]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly
5d7453910bca7ba40d8cb0347555f1baceee7c78
[lilypond.git] / Documentation / snippets / changing-the-tempo-without-a-metronome-mark.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "staff-notation, midi"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Para cambiar el tempo en la salida MIDI sin
12 imprimir nada, hacemos invisible la indicación metronómica:
13
14 "
15
16   doctitlees = "Cambiar el tempo sin indicación metronómica"
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Um das Tempo für die MIDI-Ausgabe zu ändern, ohne eine Tempoangabe in den
21 Noten auszugeben, kann die Metronombezeichnung unsichtbar gemacht werden:
22
23 "
24
25   doctitlede = "Das Tempo ohne Metronom-Angabe verändern"
26
27   texidoc = "
28 To change the tempo in MIDI output without printing anything, make the
29 metronome mark invisible.
30
31 "
32   doctitle = "Changing the tempo without a metronome mark"
33 } % begin verbatim
34
35 \score {
36   \new Staff \relative c' {
37     \tempo 4 = 160
38     c4 e g b
39     c4 b d c
40     \set Score.tempoHideNote = ##t
41     \tempo 4 = 96
42     d,4 fis a cis
43     d4 cis e d
44   }
45   \layout { }
46   \midi { }
47 }