]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/creating-metronome-marks-in-markup-mode.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / creating-metronome-marks-in-markup-mode.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"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Se pueden crear indicaciones metronómicas nuevas en modo de
12 marcado, pero no cambian el tempo en la salida MIDI.
13
14 "
15   doctitlees = "Crear indicaciones metronómicas en modo de marcado"
16
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Neue Metronombezeichnungen können als Textbeschriftung erstellt werden,
21 aber sie ändern nicht das Tempo für die MIDI-Ausgabe.
22
23 "
24
25   doctitlede = "Eine Metronombezeichnung als Textbeschriftung erstellen"
26
27 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
28   texidocfr = "
29 Vous pouvez créer des indications de tempo sous la forme d'étiquettes
30 textuelles -- des objets @code{markup} -- notamment des équivalences.
31 Cependant, elles n'apparaîtront pas dans le fichier MIDI.
32
33 "
34   doctitlefr = "Création d'une indication métronomique sous forme d'étiquette"
35
36
37   texidoc = "
38 New metronome marks can be created in markup mode, but they will not
39 change the tempo in MIDI output.
40
41 "
42   doctitle = "Creating metronome marks in markup mode"
43 } % begin verbatim
44
45 \relative c' {
46   \tempo \markup {
47     \concat {
48       (
49       \smaller \general-align #Y #DOWN \note #"16." #1
50       " = "
51       \smaller \general-align #Y #DOWN \note #"8" #1
52       )
53     }
54   }
55   c1
56   c4 c' c,2
57 }