]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "staff-notation, midi"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
27   texidocfr = "
28 Vous pouvez indiquer un changement de tempo pour le fichier MIDI sans
29 pour autant l'imprimer.  Il suffit alors de le rendre invisible aux
30 interprètes. 
31
32 "
33   doctitlefr = "Changement de tempo sans indication sur la partition"
34
35
36   texidoc = "
37 To change the tempo in MIDI output without printing anything, make the
38 metronome mark invisible.
39
40 "
41   doctitle = "Changing the tempo without a metronome mark"
42 } % begin verbatim
43
44 \score {
45   \new Staff \relative c' {
46     \tempo 4 = 160
47     c4 e g b
48     c4 b d c
49     \set Score.tempoHideNote = ##t
50     \tempo 4 = 96
51     d,4 fis a cis
52     d4 cis e d
53   }
54   \layout { }
55   \midi { }
56 }