X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fchanging-properties-for-individual-grobs.ly;h=d3d1afef32a969971c839710bfd91d33a1b0899b;hb=38d7d319eabc906e82fb42002678c6d42a23b6f7;hp=6639e8a7f7b6539a60d282509da421a743627ea6;hpb=1f419a2af14d4a5daf9bc9eb5f7368eedb5c6021;p=lilypond.git diff --git a/input/lsr/changing-properties-for-individual-grobs.ly b/input/lsr/changing-properties-for-individual-grobs.ly index 6639e8a7f7..d3d1afef32 100644 --- a/input/lsr/changing-properties-for-individual-grobs.ly +++ b/input/lsr/changing-properties-for-individual-grobs.ly @@ -1,44 +1,40 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% Do not edit this file; it is auto-generated from input/new %% This file is in the public domain. -\version "2.11.61" +\version "2.13.0" \header { lsrtags = "tweaks-and-overrides" texidoc = " The @code{\\applyOutput} command allows the tuning of any layout -object, in any context. It requires a Scheme function with three -arguments. +object, in any context. It requires a Scheme function with three +arguments." -" doctitle = "Changing properties for individual grobs" } % begin verbatim -\layout { - ragged-right = ##t -} + #(define (mc-squared grob grob-origin context) (let* - ( - (ifs (ly:grob-interfaces grob)) - (sp (ly:grob-property grob 'staff-position)) - ) - (if (memq 'note-head-interface ifs) - (begin - (ly:grob-set-property! grob 'stencil ly:text-interface::print) - (ly:grob-set-property! grob 'font-family 'roman) - (ly:grob-set-property! grob 'text - (make-raise-markup -0.5 - (case sp - ((-5) (make-simple-markup "m")) - ((-3) (make-simple-markup "c ")) - ((-2) (make-smaller-markup (make-bold-markup "2"))) - (else (make-simple-markup "bla")) - )))) - ))) + ( + (ifs (ly:grob-interfaces grob)) + (sp (ly:grob-property grob 'staff-position)) + ) + (if (memq 'note-head-interface ifs) + (begin + (ly:grob-set-property! grob 'stencil + (grob-interpret-markup grob + (make-lower-markup 0.5 + (case sp + ((-5) "m") + ((-3) "c ") + ((-2) (make-smaller-markup (make-bold-markup "2"))) + (else "bla") + )))) + )))) \relative c' { 2 \applyOutput #'Voice #mc-squared - + 2 }