]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-parentheses-around-an-expressive-mark-or-chordal-note.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / adding-parentheses-around-an-expressive-mark-or-chordal-note.ly
index a6acb4648c571a3823cee8926124c1296e9ea5bd..151b11cfa5614852b952f1c1c1fa991fb3802458 100644 (file)
@@ -1,31 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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.2"
+\version "2.18.0"
 
 \header {
-%% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
-  texidocfr = "
-La fonction @code{\\parenthesize}, qui permet de mettre un objet entre
-parenthèses, a ceci de particulier qu'elle est associée à un objet
-graphique @code{ParenthesesItem}.
-
-"
-  doctitlefr = "Mise entre parenthèses d'un signe d'interprétation ou d'une note d'un accord"
-
-  lsrtags = "workaround, expressive-marks"
-
-
-%% 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{ParenthesesItem}.
-
-"
-  doctitlees = "Encerrar entre paréntesis una marca expresiva o una nota de un acorde"
+  lsrtags = "expressive-marks, workaround"
 
   texidoc = "
 The @code{\\parenthesize} function is a special tweak that encloses
@@ -36,11 +18,9 @@ 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
+  \override ParenthesesItem.padding = #0.1
+  \override ParenthesesItem.font-size = #-4
   <d \parenthesize f a>2
 }
-