]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / 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: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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 }