]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tempo-without-a-metronome-mark.ly
Update LSR texidocs
[lilypond.git] / input / lsr / changing-the-tempo-without-a-metronome-mark.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.0
4 \version "2.13.1"
5
6 \header {
7 %% Translation of GIT committish: dcd61338c753205b6f8d549389fcb0d999c3a675
8   texidoces = "
9 Para cambiar el tempo en la salida MIDI sin
10 imprimir nada, hacemos invisible la indicación metronómica:
11
12 "
13
14   doctitlees = "Cambiar el tempo sin indicación metronómica"
15
16 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
17   texidocde = "
18 Um das Tempo für die MIDI-Ausgabe zu ändern, ohne eine Tempoangabe in den
19 Noten auszugeben, kann die Metronombezeichnung unsichtbar gemacht werden:
20
21 "
22
23   doctitlede = "Das Tempo ohne Metronom-Angabe verändern"
24
25   lsrtags = "staff-notation"
26   texidoc = "To change the tempo in MIDI output without printing
27 anything, make the metronome mark invisible:"
28
29   doctitle = "Changing the tempo without a metronome mark"
30 } % begin verbatim
31
32
33 \score {
34   \new Staff \relative c' {
35     \tempo 4 = 160
36     c4 e g b
37     c4 b d c
38     \set Score.tempoHideNote = ##t
39     \tempo 4 = 96
40     d,4 fis a cis
41     d4 cis e d
42   }
43   \layout { }
44   \midi { }
45 }