]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
f0bbabd21576c4e96dea98215154095bce1a5b76
[lilypond.git] / Documentation / snippets / changing-fret-orientations.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.16.0"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12   texidoc = "
13 Fret diagrams can be oriented in three ways.  By default the top string
14 or fret in the different orientations will be aligned.
15
16 "
17   doctitle = "Changing fret orientations"
18 } % begin verbatim
19
20
21 \include "predefined-guitar-fretboards.ly"
22
23 <<
24   \chords {
25     c1
26     c1
27     c1
28   }
29   \new FretBoards {
30     \chordmode {
31       c1
32       \override FretBoard #'(fret-diagram-details orientation) =
33         #'landscape
34       c1
35       \override FretBoard #'(fret-diagram-details orientation) =
36         #'opposing-landscape
37       c1
38     }
39   }
40   \new Voice {
41     c'1
42     c'1
43     c'
44   }
45 >>