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