]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/displaying-complex-chords.ly
Merge branch 'translation' into staging
[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 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
11   texidocfr = "
12 Voici comment obtenir l'impression d'un accord au sein duquel une même
13 note est jouée deux fois avec des altérations différentes.
14
15 "
16   doctitlefr = "Impression d'accords complexes"
17
18   lsrtags = "workaround, simultaneous-notes, chords"
19
20
21 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
22
23   texidoces = "
24 He aquí una forma de imprimir un acorde en el que suena la misma nota
25 dos veces con distintas alteraciones.
26
27 "
28   doctitlees = "Impresión de acordes complejos"
29
30   texidoc = "
31 Here is a way to display a chord where the same note is played twice
32 with different accidentals.
33
34 "
35   doctitle = "Displaying complex chords"
36 } % begin verbatim
37
38 fixA = {
39   \once \override Stem #'length = #9
40 }
41 fixB = {
42   \once \override NoteHead #'X-offset = #1.7
43   \once \override Stem #'rotation = #'(45 0 0)
44   \once \override Stem #'extra-offset = #'(-0.2 . -0.2)
45   \once \override Flag #'style = #'no-flag
46   \once \override Accidental #'extra-offset = #'(4 . 0)
47 }
48
49 \relative c' {
50   << { \fixA <b d!>8 } \\ { \voiceThree \fixB dis } >> s
51 }