X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-parentheses-around-an-expressive-mark-or-chordal-note.ly;fp=Documentation%2Fsnippets%2Fadding-parentheses-around-an-expressive-mark-or-chordal-note.ly;h=3d9ff364df429485be168dc7c3e2cd65981f25d7;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly b/Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly new file mode 100644 index 0000000000..3d9ff364df --- /dev/null +++ b/Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly @@ -0,0 +1,35 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "expressive-marks" + +%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c + texidoces = " +La función @code{\\parenthesize} es un truco especial que encierra +objetos entre paréntesis. El grob asociado es @code{ParenthesesItem}. + +" + doctitlees = "Encerrar entre paréntesis una marca expresiva o una nota de un acorde" + + texidoc = " +The @code{\\parenthesize} function is a special tweak that encloses +objects in parentheses. The associated grob is @code{ParenthesesItem}. + + +" + doctitle = "Adding parentheses around an expressive mark or chordal note" +} % begin verbatim + +\relative c' { + c2-\parenthesize -> + \override ParenthesesItem #'padding = #0.1 + \override ParenthesesItem #'font-size = #-4 + 2 +} +