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