]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-the-minimum-length-of-hairpins.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / setting-the-minimum-length-of-hairpins.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 = "expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Si los reguladores son demasiado cortos, se pueden alargar
15 modificando la propiedad @code{minimum-length} del objeto
16 @code{Hairpin}.
17
18 "
19   doctitlees = "Ajustar la longitud mínima de los reguladores"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23 texidocde = "
24 Wenn Crescendo-Klammern zu kurz sind, können sie verlängert werden, indem
25 die @code{minimum-length}-Eigenschaft des @code{Hairpin}-Objektes
26 verändert wird.
27
28 "
29   doctitlede = "Die Mindestlänge von Crescendo-Klammern bestimmen"
30
31 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
32   texidocfr = "
33 Si un soufflet est trop court, il suffit d'ajuster la propriété
34 @code{minimum-length} de l'objet @code{Hairpin} pour l'allonger.
35
36 "
37   doctitlefr = "Ajustement de la longueur d'un soufflet"
38
39
40   texidoc = "
41 If hairpins are too short, they can be lengthened by modifying the
42 @code{minimum-length} property of the @code{Hairpin} object.
43
44 "
45   doctitle = "Setting the minimum length of hairpins"
46 } % begin verbatim
47
48
49 \relative c'' {
50   c4\< c\! d\> e\!
51   \override Hairpin #'minimum-length = #5
52   << f1 { s4 s\< s\> s\! } >>
53 }
54