Doc: update lsr snippets.
[lilypond/mpolesky.git] / Documentation / snippets / changing-the-tempo-without-a-metronome-mark.ly
blob54dc692cdfab76884f8831dae9d278be1bb4ad02
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.10"
6 \header {
7 lsrtags = "staff-notation, midi"
9 %% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f
10 texidoces = "
11 Para cambiar el tempo en la salida MIDI sin
12 imprimir nada, hacemos invisible la indicación metronómica:
16 doctitlees = "Cambiar el tempo sin indicación metronómica"
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
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:
25 doctitlede = "Das Tempo ohne Metronom-Angabe verändern"
26 %% Translation of GIT committish: d78027a94928ddcdd18fd6534cbe6d719f80b6e6
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.
33 doctitlefr = "Changement de tempo sans indication sur la partition"
36 texidoc = "
37 To change the tempo in MIDI output without printing anything, make the
38 metronome mark invisible.
41 doctitle = "Changing the tempo without a metronome mark"
42 } % begin verbatim
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
54 \layout { }
55 \midi { }