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