]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly
3d35a43e5b62eed6bf975eea1b7fbbff64dcd260
[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.2"
8
9 \header {
10   lsrtags = "specific-notation, editorial-annotations, simultaneous-notes, tweaks-and-overrides, really-simple"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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 @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 @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
43 \relative c' {
44   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup { A tiny e }_\markup { A big c }
45 }
46