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