blob: 1e65f3df44151ee868ed66009ad771d57fb79e10 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.17.11"
\header {
= "chords, simultaneous-notes, workaround"
= "
Here is a way to display a chord where the same note is played twice
with different accidentals.
"
= "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 Flag.style = #'no-flag
\once \override Accidental.extra-offset = #'(4 . 0)
}
\relative c' {
<< { \fixA <b d!>8 } \\ { \voiceThree \fixB dis } >> s
}
|