X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-the-tempo-without-a-metronome-mark.ly;fp=Documentation%2Fsnippets%2Fchanging-the-tempo-without-a-metronome-mark.ly;h=6b87cacdb3971f1a8ae05de6257f2028a0d0e601;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly b/Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly new file mode 100644 index 0000000000..6b87cacdb3 --- /dev/null +++ b/Documentation/snippets/changing-the-tempo-without-a-metronome-mark.ly @@ -0,0 +1,61 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "rhythms, tweaks-and-overrides, midi" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +Para cambiar el tempo en la salida MIDI sin +imprimir nada, hacemos invisible la indicación metronómica: + +" + + doctitlees = "Cambiar el tempo sin indicación metronómica" + + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 + texidocde = " +Um das Tempo für die MIDI-Ausgabe zu ändern, ohne eine Tempoangabe in den +Noten auszugeben, kann die Metronombezeichnung unsichtbar gemacht werden: + +" + + doctitlede = "Das Tempo ohne Metronom-Angabe verändern" + +%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e + texidocfr = " +Vous pouvez indiquer un changement de tempo pour le fichier MIDI sans +pour autant l'imprimer. Il suffit alors de le rendre invisible aux +interprètes. + +" + doctitlefr = "Changement de tempo sans indication sur la partition" + + + texidoc = " +To change the tempo in MIDI output without printing anything, make the +metronome mark invisible. + +" + doctitle = "Changing the tempo without a metronome mark" +} % begin verbatim + +\score { + \new Staff \relative c' { + \tempo 4 = 160 + c4 e g b + c4 b d c + \set Score.tempoHideNote = ##t + \tempo 4 = 96 + d,4 fis a cis + d4 cis e d + } + \layout { } + \midi { } +}