]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/displaying-complex-chords.ly
Snippets: add a new snippet.
[lilypond.git] / Documentation / snippets / displaying-complex-chords.ly
index 399389c3f37bb3bc653615bfd1c6979a02f40f12..5b02cef3b8923cc31e8d8caf1b3d778b2587aa0f 100644 (file)
@@ -1,32 +1,39 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.13.4"
+% 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.1
+\version "2.13.20"
 
 \header {
-  lsrtags = "simultaneous-notes, chords"
+%% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7
+
+  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 Accidental #'extra-offset = #'(0.3 . 0)
 }
 fixB = {
-  \once \override NoteHead #'extra-offset = #'(1.7 . 0)
+  \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 = #'(3.1 . 0)
+  \once \override Accidental #'extra-offset = #'(4 . 0)
 }
 
 \relative c' {
   << { \fixA <b d!>8 } \\ { \voiceThree \fixB dis } >> s
 }
-