]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/displaying-complex-chords.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / displaying-complex-chords.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12
13   texidoces = "
14 He aquĆ­ una forma de imprimir un acorde en el que suena la misma nota
15 dos veces con distintas alteraciones.
16
17 "
18   doctitlees = "ImpresiĆ³n de acordes complejos"
19
20   lsrtags = "simultaneous-notes, chords"
21   texidoc = "
22 Here is a way to display a chord where the same note is played twice
23 with different accidentals.
24 "
25   doctitle = "Displaying complex chords"
26 } % begin verbatim
27
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 Stem #'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 }