]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/displaying-complex-chords.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / displaying-complex-chords.ly
diff --git a/Documentation/snippets/displaying-complex-chords.ly b/Documentation/snippets/displaying-complex-chords.ly
new file mode 100644 (file)
index 0000000..f3cae38
--- /dev/null
@@ -0,0 +1,42 @@
+% 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"
+
+\header {
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+
+  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
+}
+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)
+}
+
+\relative c' {
+  << { \fixA <b d!>8 } \\ { \voiceThree \fixB dis } >> s
+}