]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly
Update snippets from today's LSR with changed makelsr.py
[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 = "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
21 \score {
22   \new Staff \relative c' {
23     \tempo 4 = 160
24     c4 e g b
25     c4 b d c
26     \set Score.tempoHideNote = ##t
27     \tempo 4 = 96
28     d,4 fis a cis
29     d4 cis e d
30   }
31   \layout { }
32   \midi { }
33 }