]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/fret-diagram-origins.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / fret-diagram-origins.ly
1 \version "2.17.6"
2
3 \header {
4   texidoc="
5 Fret diagrams of different orientation should share a common origin
6 of the topmost fret or string.
7
8 "
9 }
10
11 \include "predefined-guitar-fretboards.ly"
12 \layout { ragged-right = ##t }
13 <<
14   \chords {
15     c1 |
16     c1 |
17     c1
18   }
19
20   \new FretBoards {
21     \chordmode{
22     c1 |
23     \override FretBoard.fret-diagram-details.orientation = #'landscape
24     c1 |
25     \override FretBoard.fret-diagram-details.orientation = #'opposing-landscape
26     c1
27     }
28   }
29
30   \new Voice {
31     c'1 |
32     c'1 |
33     c'
34  }
35 >>
36
37