]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly
e3c25c6dcbebf38cc162617e2c45d2ac0fbf2536
[lilypond.git] / Documentation / snippets / changing-a-single-notes-size-in-a-chord.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "simultaneous-notes, editorial-annotations, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Se pueden modificar notas individuales de un acorde con la instrucción
12 @code{\\tweak}, alterando la propiedad @code{font-size}.
13
14 Dentro de un acorde (entre ángulos simples @code{< >}), antes de la
15 nota que queremos alterar, situamos la instrucción @code{\\tweak}
16 seguida por @code{#'font-size} y definimos el tamaño adecuado como
17 @code{#-2} (una cabeza pequeña).
18
19 "
20   doctitlees = "Modificar el tamaño de una nota suelta de un acorde"
21
22   texidoc = "
23 Individual note heads in a chord can be modified with the
24 @code{\\tweak} command inside a chord, by altering the @code{font-size}
25 property.
26
27
28 Inside the chord (within the brackets @code{< >}), before the note to
29 be altered, place the @code{\\tweak} command, followed by
30 @code{#'font-size} and define the proper size like @code{#-2} (a tiny
31 note head).
32
33
34
35 "
36   doctitle = "Changing a single note's size in a chord"
37 } % begin verbatim
38
39 \relative c' {
40   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup { A tiny e }_\markup { A big c }
41 }
42