]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-breath-mark-symbol.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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   texidoc = "
29 The glyph of the breath mark can be tuned by overriding the text
30 property of the @code{BreathingSign} layout object with any markup
31 text.
32
33 "
34   doctitle = "Changing the breath mark symbol"
35 } % begin verbatim
36
37 \relative c'' {
38   c2
39   \override BreathingSign #'text = \markup { \musicglyph #"scripts.rvarcomma" }
40   \breathe
41   d2
42 }