]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-an-individual-notes-size-in-a-chord.ly
Merge branch 'master' of /home/lilycvs/git/lily/
[lilypond.git] / input / lsr / changing-an-individual-notes-size-in-a-chord.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: simultaneous-notes, editorial-and-educational-use
3 \version "2.11.35"
4
5 \header { texidoc = "
6 Individual noteheads in a chord can be modified with the @code{\\tweak}
7 command inside a chord, by altering the @code{'font-size} property.
8
9
10 Inside the chord (within the brackets @code{< >}), before the note to
11 be altered, place the @code{\\tweak} command, followed by
12 @code{#'font-size} and define the proper size like @code{#-2} (a tiny
13 notehead).
14
15
16 The code for the chord example shown: @code{} 
17 " }
18
19 \header{
20   title = "Modify an individual notehead's size in a chord"
21 }
22
23 Notes = \relative {
24   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup{A tiny e}_\markup{A big c}
25 }
26
27 \score{
28   \Notes
29 }