X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-a-single-notes-size-in-a-chord.ly;h=8175b0e3cc95912e47a9cbf73c22b20b80178288;hb=bcb2a9dc0a511de8587c58b29ac9134f40483228;hp=54ad8813d182a7c866664a7a9a32da27e4346e11;hpb=6977ddc9a3b63ea810eaecb864269c7d847ccf98;p=lilypond.git diff --git a/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly b/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly index 54ad8813d1..8175b0e3cc 100644 --- a/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly +++ b/Documentation/snippets/changing-a-single-notes-size-in-a-chord.ly @@ -4,23 +4,10 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.14.0" +\version "2.17.11" \header { - lsrtags = "simultaneous-notes, editorial-annotations, tweaks-and-overrides" - -%% Translation of GIT committish: 8b93de6ce951b7b14bc7818f31019524295b990f - 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 -@code{#-2} (una cabeza pequeña). - -" - doctitlees = "Modificar el tamaño de una nota suelta de un acorde" + lsrtags = "editorial-annotations, really-simple, simultaneous-notes, specific-notation, tweaks-and-overrides" texidoc = " Individual note heads in a chord can be modified with the @@ -39,7 +26,7 @@ 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 } } -