]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / changing-fret-orientations.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.29"
5
6 \header {
7   lsrtags = "fretted-strings"
8
9   texidoc = "
10 Fret diagrams can be oriented in three ways.  By default the top string
11 or fret in the different orientations will be aligned.
12
13 "
14   doctitle = "Changing fret orientations"
15 } % begin verbatim
16
17 \include "predefined-guitar-fretboards.ly"
18
19 <<
20   \chords {
21     c1
22     c1
23     c1
24   }
25   \new FretBoards {
26     \chordmode {
27       c1
28       \override FretBoard #'(fret-diagram-details orientation) =
29         #'landscape
30       c1
31       \override FretBoard #'(fret-diagram-details orientation) =
32         #'opposing-landscape
33       c1
34     }
35   }
36   \new Voice {
37     c'1
38     c'1
39     c'
40   }
41 >>
42