]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-a-single-notes-size-in-a-chord.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "simultaneous-notes, editorial-annotations, tweaks-and-overrides"
7
8   texidoces = "
9 Se pueden modificar notas individuales de un acorde con la
10 instrucción @code{\\tweak}, alterando la propiedad
11 @code{font-size}.
12
13 Dentro de un acorde (entre ángulos simples @code{< >}), antes de
14 la nota que queremos alterar, situamos la instrucción
15 @code{\\tweak} seguida por @code{#'font-size} y definimos el
16 tamaño adecuado como @code{#-2} (una cabeza pequeña).
17
18 "
19   doctitlees = "Modificar el tamaño de una nota suelta de un acorde"
20
21   texidoc = "
22 Individual note heads in a chord can be modified with the
23 @code{\\tweak} command inside a chord, by altering the @code{font-size}
24 property.
25
26
27 Inside the chord (within the brackets @code{< >}), before the note to
28 be altered, place the @code{\\tweak} command, followed by
29 @code{#'font-size} and define the proper size like @code{#-2} (a tiny
30 notehead).
31
32
33
34 "
35   doctitle = "Changing a single note's size in a chord"
36 } % begin verbatim
37 \layout { ragged-right = ##t }
38 \relative {
39   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup { A tiny e }_\markup { A big c }
40 }