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