]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-an-individual-notes-size-in-a-chord.ly
Fix makelsr.py and update LSR
[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 http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: simultaneous-notes, editorial-and-educational-use, tweaks-and-overrides
4 \version "2.11.35"
5
6 \header { texidoc = "
7 Individual noteheads in a chord can be modified with the @code{\\tweak}
8 command inside a chord, by altering the @code{'font-size} property.
9
10
11 Inside the chord (within the brackets @code{< >}), before the note to
12 be altered, place the @code{\\tweak} command, followed by
13 @code{#'font-size} and define the proper size like @code{#-2} (a tiny
14 notehead).
15
16
17 The code for the chord example shown: @code{} 
18 " }
19 % begin verbatim
20 \header{
21   title = "Modify an individual notehead's size in a chord"
22 }
23
24 Notes = \relative {
25   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup{A tiny e}_\markup{A big c}
26 }
27
28 \score{
29   \Notes
30 }