]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/user/changing-defaults.itely
* scripts/lilypond-book.py (is_derived_class): use numbers
[lilypond.git] / Documentation / user / changing-defaults.itely
index 7940601ef3dde9788a6a0abcc9dada9e3e3f589c..16f32d9afdc99819561ff9c0b1531f84fc3d84e1 100644 (file)
@@ -665,6 +665,39 @@ and/or crashes.
 @node Defining context defaults 
 @subsection Defining context defaults
 
+The adjustments of the previous chapters can also be entered separate
+from the music, in the @code{\paper} block,
+
+@example
+  \paper {
+     @dots{}
+     \context @{
+        \StaffContext
+
+        \set fontSize = #-2
+        \override Stem #'thickness
+        \remove "Time_signature_engraver"
+      @}
+   @}
+@end example
+
+This
+@example
+  \StaffContext
+@end example
+
+@noindent
+takes the existing definition @context{Staff}, and adds
+changes some settings,
+
+@example
+        \set fontSize = #-2
+        \override Stem #'thickness
+        \remove "Time_signature_engraver"
+@end example
+
+
+
 Context properties can be set as defaults, within the
 @code{\paper} block. For example,