]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/letter-tablature-formatting.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / letter-tablature-formatting.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, staff-notation"
11
12   texidoc = "
13 Tablature can be formatted using letters instead of numbers.
14
15 "
16   doctitle = "Letter tablature formatting"
17 } % begin verbatim
18
19 music = \relative c {
20   c4 d e f
21   g4 a b c
22   d4 e f g
23 }
24
25 <<
26   \new Staff {
27     \clef "G_8"
28     \music
29   }
30   \new TabStaff \with {
31     tablatureFormat = #fret-letter-tablature-format
32   }
33   {
34     \music
35   }
36 >>