]> 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 fe108a2cf84f77f629ee2d41d47cb8045daa6619..b90be170835f5163faa0c615ebe0bc6c8c89801b 100644 (file)
@@ -1,42 +1,36 @@
-% DO NOT EDIT this file manually; it is automatically
-% generated from Documentation/snippets/new
-% Make any changes in Documentation/snippets/new/
-% and then run scripts/auxiliar/makelsr.py
-%
-% This file is in the public domain.
-%% Note: this file works from version 2.14.0
-\version "2.14.0"
+%% 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: 8b93de6ce951b7b14bc7818f31019524295b990f
+  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 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 <b d!>8 } \\ { \voiceThree \fixB dis } >> s
 }