]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-hairpins-using-al-niente-notation.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / printing-hairpins-using-al-niente-notation.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.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Se pueden imprimir reguladores con un círculo en la punta
12 (notación «al niente») estableciendo la propiedad
13 @code{circled-tip} del objeto @code{Hairpin} al valor @code{#t}.
14
15 "
16   doctitlees = "Impresión de reguladores utilizando la notación «al niente»"
17
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20  texidocde = "
21  Crescendo-Klammern können mit einem kleinen Kreis vor der Spitze
22  notiert werden (al niente = bis zum Nichts), indem die
23 @code{circled-tip}-Eigenschaft des @code{Hairpin}-Objekts auf
24 @code{#t} gesetzt wird.
25
26 "
27   doctitlede = "Crescendo Klammern al niente schreiben"
28
29   texidoc = "
30 Hairpins may be printed with a circled tip (al niente notation) by
31 setting the @code{circled-tip} property of the @code{Hairpin} object to
32 @code{#t}.
33
34 "
35   doctitle = "Printing hairpins using al niente notation"
36 } % begin verbatim
37
38 \relative c'' {
39   \override Hairpin #'circled-tip = ##t
40   c2\< c\!
41   c4\> c\< c2\!
42 }
43