]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
Web-ja: update introduction
[lilypond.git] / Documentation / snippets / changing-fret-orientations.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.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 \include "predefined-guitar-fretboards.ly"
21
22 <<
23   \chords {
24     c1
25     c1
26     c1
27   }
28   \new FretBoards {
29     \chordmode {
30       c1
31       \override FretBoard.fret-diagram-details.orientation =
32         #'landscape
33       c1
34       \override FretBoard.fret-diagram-details.orientation =
35         #'opposing-landscape
36       c1
37     }
38   }
39   \new Voice {
40     c'1
41     c'1
42     c'
43   }
44 >>