]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-ly-grob-object-to-access-grobs-with--tweak.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / Documentation / snippets / using-ly-grob-object-to-access-grobs-with--tweak.ly
index 6b8c9f468eaccb859b7f3e98e18631e4238041b2..d07271b46a32b603babe466ffef6ab1cae63a7c4 100644 (file)
@@ -1,19 +1,19 @@
 %% 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.16.0"
+\version "2.18.0"
 
 \header {
   lsrtags = "devel, scheme-language, tweaks-and-overrides"
 
   texidoc = "
-Some grobs can be accessed @qq{laterally} from within another grob's
-callback. These are usually listed as @qq{layout objects} in the
-@qq{Internal properties} section of a grob-interface. The function
-@code{ly:grob-object} is used to access these grobs.
+Some grobs can be accessed “laterally” from within another grob’s
+callback. These are usually listed as “layout objects” in the “Internal
+properties” section of a grob-interface. The function ly:grob-object is
+used to access these grobs.
 
 
 Demonstrated below are some ways of accessing grobs from within a
@@ -30,7 +30,7 @@ accessed.
 Example console output:
 
 
--------------------- #-Grob Accidental - #-Grob Arpeggio - #-Grob Stem -
+@code{ #Grob Accidental () #Grob Stem}
 
 
 
@@ -68,10 +68,10 @@ Example console output:
 
 \relative c' {
   %% display grobs for each note head:
-  %\override NoteHead #'before-line-breaking = #display-grobs
+  %\override NoteHead.before-line-breaking = #display-grobs
   <c
   %% or just for one:
-  \tweak #'before-line-breaking #display-grobs
+  \tweak before-line-breaking #display-grobs
   es
   g>1\arpeggio
 }