X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fdisplaying-complex-chords.ly;h=b90be170835f5163faa0c615ebe0bc6c8c89801b;hb=HEAD;hp=bc2d48f61fb3e22310d50cd3f4708e4c295af8fc;hpb=f2fbf0dd215c8af6a30aae6c9634f3b92333b0ab;p=lilypond.git diff --git a/Documentation/snippets/displaying-complex-chords.ly b/Documentation/snippets/displaying-complex-chords.ly index bc2d48f61f..b90be17083 100644 --- a/Documentation/snippets/displaying-complex-chords.ly +++ b/Documentation/snippets/displaying-complex-chords.ly @@ -1,39 +1,36 @@ -% Do not edit this file; it is automatically -% generated from Documentation/snippets/new -% This file is in the public domain. -%% Note: this file works from version 2.13.36 -\version "2.13.36" +%% DO NOT EDIT this file manually; it is automatically +%% 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.18.0" \header { -%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec + lsrtags = "chords, simultaneous-notes, workaround" - 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 = "simultaneous-notes, chords" texidoc = " Here is a way to display a chord where the same note is played twice with different accidentals. + " doctitle = "Displaying complex chords" } % 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 Stem #'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 }