]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "rhythms, tweaks-and-overrides, midi"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Um das Tempo für die MIDI-Ausgabe zu ändern, ohne eine Tempoangabe in den
22 Noten auszugeben, kann die Metronombezeichnung unsichtbar gemacht werden:
23
24 "
25
26   doctitlede = "Das Tempo ohne Metronom-Angabe verändern"
27
28 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
29   texidocfr = "
30 Vous pouvez indiquer un changement de tempo pour le fichier MIDI sans
31 pour autant l'imprimer.  Il suffit alors de le rendre invisible aux
32 interprètes.
33
34 "
35   doctitlefr = "Changement de tempo sans indication sur la partition"
36
37
38   texidoc = "
39 To change the tempo in MIDI output without printing anything, make the
40 metronome mark invisible.
41
42 "
43   doctitle = "Changing the tempo without a metronome mark"
44 } % begin verbatim
45
46 \score {
47   \new Staff \relative c' {
48     \tempo 4 = 160
49     c4 e g b
50     c4 b d c
51     \set Score.tempoHideNote = ##t
52     \tempo 4 = 96
53     d,4 fis a cis
54     d4 cis e d
55   }
56   \layout { }
57   \midi { }
58 }