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