]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-breath-mark-symbol.ly
Doc: Update LSR.
[lilypond.git] / Documentation / snippets / changing-the-breath-mark-symbol.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.16"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
10   texidoces = "
11 El glifo de la marca de respiración se puede ajustar
12 sobreescribiendo la propiedad de texto del objeto de presentación
13 @code{BreathingSign}, con cualquier otro texto de marcado.
14
15 "
16   doctitlees = "Cambiar el símbolo de la marca de respiración"
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Das Schriftzeichen für das Atemzeichen kann verändert werden, indem
21 die Text-Eigenschaft des @code{BreathingSign}-Layoutobjekts mit einer
22 beliebigen Textbeschriftung definiert wird.
23
24 "
25   doctitlede = "Das Atemzeichen-Symbol verändern"
26 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
27   texidocfr = "
28 On peut choisir le glyphe imprimé par cette commande, en modifiant la
29 propriété @code{text} de l'objet @code{BreathingSign}, pour lui affecter
30 n'importe quelle indication textuelle.
31
32 "
33   doctitlefr = "Modification de l'indicateur de respiration"
34
35
36   texidoc = "
37 The glyph of the breath mark can be tuned by overriding the text
38 property of the @code{BreathingSign} layout object with any markup
39 text.
40
41 "
42   doctitle = "Changing the breath mark symbol"
43 } % begin verbatim
44
45 \relative c'' {
46   c2
47   \override BreathingSign #'text = \markup { \musicglyph #"scripts.rvarcomma" }
48   \breathe
49   d2
50 }