]> git.donarmstrong.com Git - lilypond.git/blob - input/book.ly
patch::: 0.0.75.jcn6: pats
[lilypond.git] / input / book.ly
1 %{
2 MudelaHeader
3
4  filename: book.ly
5  title:
6  description: demonstrate inclusion of Lily output into (La)TeX
7 documents
8  composers:
9  entered-by:
10  copyright:
11
12  Tested Features: natural width
13 EndMudelaHeader
14 %}
15 \version "0.0.61";
16
17
18
19 \score {\melodic { \clef "bass";
20         [c8 g e' d'] [e' g e' g]
21         [c  a f' e'] [f' a f' a]
22         }
23         
24         \paper { 
25                 \output "bach1.out";
26                 linewidth =-1.0\cm;
27         }
28 }
29
30 \score {\melodic { \clef "bass";
31         [c8() g e'() d'] [e'( g e') g]
32         [c()  a f' ()e'] [f'( a f') a]
33                 }
34         \paper { 
35                 \output "bach2.out";
36                 linewidth= -1.0\cm;
37         }
38 }
39
40 \score {\melodic { \clef "bass";
41         [c8 g( e' d'] [)e' g( e' )g]
42         [c  a( f' e'] [)f' a( f' )a]
43                 }
44         \paper { 
45                 \output "bach3.out";
46                 linewidth = -1.0\cm;
47                 unitspace = 2.0\cm;
48         }
49 }