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