X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fdisplaying-complex-chords.ly;h=b90be170835f5163faa0c615ebe0bc6c8c89801b;hb=d9b67cc332fa253ab0679b54873b2f17fc37e099;hp=25c0790b009d8975b4493a92d5dc1033d326472b;hpb=6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1;p=lilypond.git diff --git a/Documentation/snippets/displaying-complex-chords.ly b/Documentation/snippets/displaying-complex-chords.ly index 25c0790b00..b90be17083 100644 --- a/Documentation/snippets/displaying-complex-chords.ly +++ b/Documentation/snippets/displaying-complex-chords.ly @@ -1,22 +1,13 @@ %% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% generated from LSR http://lsr.di.unimi.it %% Make any changes in LSR itself, or in Documentation/snippets/new/ , %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.15.32" +\version "2.18.0" \header { - lsrtags = "workaround, simultaneous-notes, chords" - -%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa - - texidoces = " -He aquí una forma de imprimir un acorde en el que suena la misma nota -dos veces con distintas alteraciones. - -" - doctitlees = "Impresión de acordes complejos" + lsrtags = "chords, simultaneous-notes, workaround" texidoc = " Here is a way to display a chord where the same note is played twice @@ -27,16 +18,19 @@ with different accidentals. } % begin verbatim fixA = { - \once \override Stem #'length = #9 + \once \override Stem.length = #11 } + fixB = { - \once \override NoteHead #'X-offset = #1.7 - \once \override Stem #'rotation = #'(45 0 0) - \once \override Stem #'extra-offset = #'(-0.2 . -0.2) - \once \override Flag #'style = #'no-flag - \once \override Accidental #'extra-offset = #'(4 . 0) + \once \override NoteHead.X-offset = #1.7 + \once \override Stem.length = #7 + \once \override Stem.rotation = #'(45 0 0) + \once \override Stem.extra-offset = #'(-0.1 . -0.2) + \once \override Flag.style = #'no-flag + \once \override Accidental.extra-offset = #'(4 . -.1) } + \relative c' { << { \fixA 8 } \\ { \voiceThree \fixB dis } >> s }