]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly
Web-it: replace "open source" with "software libero"
[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 = "really-simple, specific-notation, tweaks-and-overrides, simultaneous-notes, editorial-annotations"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
26   texidocfr = "
27 La commande @code{\\tweak} permet de modifier la propriété
28 @code{font-size} d'une note particulière d'un accord.
29
30 Il s'agit de placer, à l'intérieur même de l'accord (dans la
31 construction @code{<@tie{}>}) et avant la note considérée,
32 l'instruction @code{\\tweak} suivie de @code{#'font-size} et de définir
33 la taille voulue -- comme @code{#-2} pour une petite tête.
34
35 "
36   doctitlefr = "Modification de la taille d'une note particulière d'un accord"
37
38   texidoc = "
39 Individual note heads in a chord can be modified with the
40 @code{\\tweak} command inside a chord, by altering the @code{font-size}
41 property.
42
43
44 Inside the chord (within the brackets @code{< >}), before the note to
45 be altered, place the @code{\\tweak} command, followed by
46 @code{#'font-size} and define the proper size like @code{#-2} (a tiny
47 note head).
48
49
50
51 "
52   doctitle = "Changing a single note's size in a chord"
53 } % begin verbatim
54
55
56 \relative c' {
57   <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup { A tiny e }_\markup { A big c }
58 }
59