]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/displaying-complex-chords.ly
Merge branch 'master' into translation
[lilypond.git] / Documentation / snippets / displaying-complex-chords.ly
index 223a6e76e0945f1234221cb6a0487ae7fce5b9b4..b90be170835f5163faa0c615ebe0bc6c8c89801b 100644 (file)
@@ -1,10 +1,13 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.13.10"
+\version "2.18.0"
 
 \header {
-  lsrtags = "simultaneous-notes, chords"
+  lsrtags = "chords, simultaneous-notes, workaround"
 
   texidoc = "
 Here is a way to display a chord where the same note is played twice
@@ -15,18 +18,19 @@ with different accidentals.
 } % begin verbatim
 
 fixA = {
-  \once \override Stem #'length = #9
-  \once \override Accidental #'extra-offset = #'(0.3 . 0)
+  \once \override Stem.length = #11
 }
+
 fixB = {
-  \once \override NoteHead #'extra-offset = #'(1.7 . 0)
-  \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 = #'(3.1 . 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 <b d!>8 } \\ { \voiceThree \fixB dis } >> s
 }
-