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