]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly
Imported Upstream version 2.19.45
[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.di.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.18.0"
8
9 \header {
10   lsrtags = "midi, rhythms, tweaks-and-overrides"
11
12   texidoc = "
13 To change the tempo in MIDI output without printing anything, make the
14 metronome mark invisible.
15
16 "
17   doctitle = "Changing the tempo without a metronome mark"
18 } % begin verbatim
19
20 \score {
21   \new Staff \relative c' {
22     \tempo 4 = 160
23     c4 e g b
24     c4 b d c
25     \set Score.tempoHideNote = ##t
26     \tempo 4 = 96
27     d,4 fis a cis
28     d4 cis e d
29   }
30   \layout { }
31   \midi { }
32 }