]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / adding-parentheses-around-an-expressive-mark-or-chordal-note.ly
index 1660d5312137c2382c9cebdd573b72de86ac2b6b..fa3ca46835dccff22a5d4081b0e6cd45013cb9f1 100644 (file)
@@ -1,33 +1,36 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% 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.13.1"
+\version "2.14.2"
 
 \header {
-  lsrtags = "expressive-marks"
+  lsrtags = "workaround, expressive-marks"
 
-%% Translation of GIT committish: dff50e8e1d3134657a6b6203b9c93826dc4cef65
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   texidoces = "
 La función @code{\\parenthesize} es un truco especial que encierra
-objetos entre paréntesis.  El grob asociado es
-@code{Score.ParenthesesItem}.
+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{Score.ParenthesesItem}. 
+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
-  <d \parenthesize f a>2 
+  <d \parenthesize f a>2
 }
 
-