]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly
1752ba00066a60e5313e7ebf2173e345e57797f7
[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 = "workaround, expressive-marks"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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   texidoc = "
21 The @code{\\parenthesize} function is a special tweak that encloses
22 objects in parentheses.  The associated grob is @code{ParenthesesItem}.
23
24
25 "
26   doctitle = "Adding parentheses around an expressive mark or chordal note"
27 } % begin verbatim
28
29
30 \relative c' {
31   c2-\parenthesize ->
32   \override ParenthesesItem #'padding = #0.1
33   \override ParenthesesItem #'font-size = #-4
34   <d \parenthesize f a>2
35 }
36