]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / changing-a-single-notes-size-in-a-chord.ly
index d25c0af3cc43938624a23a055c6c7a4c41da92c0..065155b93da66ed114074463bcc25208b69f41c4 100644 (file)
@@ -4,20 +4,20 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.14.2"
 
 \header {
-  lsrtags = "simultaneous-notes, editorial-annotations, tweaks-and-overrides"
+  lsrtags = "specific-notation, editorial-annotations, simultaneous-notes, tweaks-and-overrides, really-simple"
 
-%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   texidoces = "
 Se pueden modificar notas individuales de un acorde con la instrucción
 @code{\\tweak}, alterando la propiedad @code{font-size}.
 
 Dentro de un acorde (entre ángulos simples @code{< >}), antes de la
 nota que queremos alterar, situamos la instrucción @code{\\tweak}
-seguida por @code{'font-size} y definimos el tamaño adecuado como
-@w{@code{#-2}} (una cabeza pequeña).
+seguida por @code{#'font-size} y definimos el tamaño adecuado como
+@code{#-2} (una cabeza pequeña).
 
 "
   doctitlees = "Modificar el tamaño de una nota suelta de un acorde"
@@ -30,7 +30,7 @@ property.
 
 Inside the chord (within the brackets @code{< >}), before the note to
 be altered, place the @code{\\tweak} command, followed by
-@code{'font-size} and define the proper size like @w{@code{-2}} (a tiny
+@code{#'font-size} and define the proper size like @code{#-2} (a tiny
 note head).
 
 
@@ -39,8 +39,8 @@ note head).
   doctitle = "Changing a single note's size in a chord"
 } % begin verbatim
 
+
 \relative c' {
-  <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1
-    ^\markup { A tiny e }_\markup { A big c }
+  <\tweak #'font-size #+2 c e g c \tweak #'font-size #-2 e>1^\markup { A tiny e }_\markup { A big c }
 }