]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly
fd18b6b99e555ed5e8c8e7cf28f9899bc24123a8
[lilypond.git] / Documentation / snippets / changing-the-tempo-without-a-metronome-mark.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "tweaks-and-overrides, midi, rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Para cambiar el tempo en la salida MIDI sin
15 imprimir nada, hacemos invisible la indicación metronómica:
16
17 "
18
19   doctitlees = "Cambiar el tempo sin indicación metronómica"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Um das Tempo für die MIDI-Ausgabe zu ändern, ohne eine Tempoangabe in den
25 Noten auszugeben, kann die Metronombezeichnung unsichtbar gemacht werden:
26
27 "
28
29   doctitlede = "Das Tempo ohne Metronom-Angabe verändern"
30
31 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
32   texidocfr = "
33 Vous pouvez indiquer un changement de tempo pour le fichier MIDI sans
34 pour autant l'imprimer.  Il suffit alors de le rendre invisible aux
35 interprètes.
36
37 "
38   doctitlefr = "Changement de tempo sans indication sur la partition"
39
40
41   texidoc = "
42 To change the tempo in MIDI output without printing anything, make the
43 metronome mark invisible.
44
45 "
46   doctitle = "Changing the tempo without a metronome mark"
47 } % begin verbatim
48
49
50 \score {
51   \new Staff \relative c' {
52     \tempo 4 = 160
53     c4 e g b
54     c4 b d c
55     \set Score.tempoHideNote = ##t
56     \tempo 4 = 96
57     d,4 fis a cis
58     d4 cis e d
59   }
60   \layout { }
61   \midi { }
62 }