]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / adding-parentheses-around-an-expressive-mark-or-chordal-note.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 La función @code{\\parenthesize} es un truco especial que encierra
12 objetos entre paréntesis.  El grob asociado es
13 @code{Score.ParenthesesItem}.
14
15 "
16   doctitlees = "Encerrar entre paréntesis una marca expresiva o una nota de un acorde"
17
18   texidoc = "
19 The @code{\\parenthesize} function is a special tweak that encloses
20 objects in parentheses.  The associated grob is
21 @code{Score.ParenthesesItem}.
22
23 "
24   doctitle = "Adding parentheses around an expressive mark or chordal note"
25 } % begin verbatim
26
27 \relative c' {
28   c2-\parenthesize ->
29   \override ParenthesesItem #'padding = #0.1
30   \override ParenthesesItem #'font-size = #-4
31   <d \parenthesize f a>2
32 }
33
34