]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/displaying-complex-chords.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / displaying-complex-chords.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.36
5 \version "2.13.46"
6
7 \header {
8 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
9
10   texidoces = "
11 He aquĆ­ una forma de imprimir un acorde en el que suena la misma nota
12 dos veces con distintas alteraciones.
13
14 "
15   doctitlees = "ImpresiĆ³n de acordes complejos"
16
17   lsrtags = "simultaneous-notes, chords"
18   texidoc = "
19 Here is a way to display a chord where the same note is played twice
20 with different accidentals.
21 "
22   doctitle = "Displaying complex chords"
23 } % begin verbatim
24
25
26 fixA = {
27   \once \override Stem #'length = #9
28 }
29 fixB = {
30   \once \override NoteHead #'X-offset = #1.7
31   \once \override Stem #'rotation = #'(45 0 0)
32   \once \override Stem #'extra-offset = #'(-0.2 . -0.2)
33   \once \override Stem #'flag-style = #'no-flag
34   \once \override Accidental #'extra-offset = #'(4 . 0)
35 }
36
37 \relative c' {
38   << { \fixA <b d!>8 } \\ { \voiceThree \fixB dis } >> s
39 }