]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-a-single-notes-size-in-a-chord.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[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.46"
4
5 \header {
6   lsrtags = "simultaneous-notes, editorial-annotations, tweaks-and-overrides"
7
8   texidoc = "
9 Individual note heads in a chord can be modified with the
10 @code{\\tweak} command inside a chord, by altering the @code{font-size}
11 property.
12
13
14 Inside the chord (within the brackets @code{< >}), before the note to
15 be altered, place the @code{\\tweak} command, followed by
16 @code{#'font-size} and define the proper size like @code{#-2} (a tiny
17 notehead).
18
19
20
21 "
22   doctitle = "Changing a single note's size in a chord"
23 } % begin verbatim
24 \layout { ragged-right = ##t }
25 \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 }