]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / adding-parentheses-around-an-expressive-mark-or-chordal-note.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 %% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
11   texidocfr = "
12 La fonction @code{\\parenthesize}, qui permet de mettre un objet entre
13 parenthèses, a ceci de particulier qu'elle est associée à un objet
14 graphique @code{ParenthesesItem}.
15
16 "
17   doctitlefr = "Mise entre parenthèses d'un signe d'interprétation ou d'une note d'un accord"
18
19   lsrtags = "workaround, expressive-marks"
20
21
22 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
23   texidoces = "
24 La función @code{\\parenthesize} es un truco especial que encierra
25 objetos entre paréntesis.  El grob asociado es @code{ParenthesesItem}.
26
27 "
28   doctitlees = "Encerrar entre paréntesis una marca expresiva o una nota de un acorde"
29
30   texidoc = "
31 The @code{\\parenthesize} function is a special tweak that encloses
32 objects in parentheses.  The associated grob is @code{ParenthesesItem}.
33
34
35 "
36   doctitle = "Adding parentheses around an expressive mark or chordal note"
37 } % begin verbatim
38
39
40 \relative c' {
41   c2-\parenthesize ->
42   \override ParenthesesItem #'padding = #0.1
43   \override ParenthesesItem #'font-size = #-4
44   <d \parenthesize f a>2
45 }
46