]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-a-single-notes-size-in-a-chord.ly
LSR: update.
[lilypond.git] / input / lsr / changing-a-single-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 \relative {
22   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup { A tiny e }_\markup { A big c }
23 }
24 \layout { ragged-right = ##t }
25