]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-a-single-notes-size-in-a-chord.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[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.13.1"
4
5 \header {
6   lsrtags = "simultaneous-notes, editorial-annotations, tweaks-and-overrides"
7
8 %% Translation of GIT committish: 55ea64f469d9c1703222654c9e5bc8490b04a67a
9   texidoces = "
10 Se pueden modificar notas individuales de un acorde con la
11 instrucción @code{\\tweak}, alterando la propiedad
12 @code{font-size}.
13
14 Dentro de un acorde (entre ángulos simples @code{< >}), antes de
15 la nota que queremos alterar, situamos la instrucción
16 @code{\\tweak} seguida por @code{#'font-size} y definimos el
17 tamaño adecuado como @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 notehead).
32
33
34
35 "
36   doctitle = "Changing a single note's size in a chord"
37 } % begin verbatim
38
39 \layout { ragged-right = ##t }
40 \relative {
41   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup { A tiny e }_\markup { A big c }
42 }
43