]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/displaying-complex-chords.ly
382cea1d1f2f450224d8ada1a04353a95eb4f87b
[lilypond.git] / Documentation / snippets / displaying-complex-chords.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.15.32"
8
9 \header {
10   lsrtags = "workaround, simultaneous-notes, chords"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13
14   texidoces = "
15 He aquĆ­ una forma de imprimir un acorde en el que suena la misma nota
16 dos veces con distintas alteraciones.
17
18 "
19   doctitlees = "ImpresiĆ³n de acordes complejos"
20
21   texidoc = "
22 Here is a way to display a chord where the same note is played twice
23 with different accidentals.
24
25 "
26   doctitle = "Displaying complex chords"
27 } % begin verbatim
28
29 fixA = {
30   \once \override Stem #'length = #9
31 }
32 fixB = {
33   \once \override NoteHead #'X-offset = #1.7
34   \once \override Stem #'rotation = #'(45 0 0)
35   \once \override Stem #'extra-offset = #'(-0.2 . -0.2)
36   \once \override Flag #'style = #'no-flag
37   \once \override Accidental #'extra-offset = #'(4 . 0)
38 }
39
40 \relative c' {
41   << { \fixA <b d!>8 } \\ { \voiceThree \fixB dis } >> s
42 }