]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-size-of-layout-objects.ly
The IR guide
[lilypond.git] / input / lsr / changing-the-size-of-layout-objects.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "editorial-and-educational-use, tweaks-and-overrides"
7  texidoc = "
8 The @code{font-size} property can be set directly, so that only certain
9 layout objects are affected.
10 " }
11 % begin verbatim
12 \relative c'' {
13   \set fontSize = #3
14   c4.-> d8---3
15   \override NoteHead #'font-size = #-4
16   c4.-> d8---3
17   \override Script #'font-size = #3
18   c4.-> d8---3
19 }