]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lilypond-book/papersize-docs.tely
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / lilypond-book / papersize-docs.tely
1 \input texinfo @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*-
2 @setfilename papersize-docs.info
3 @settitle Different paper sizes for documentation
4 @documentencoding UTF-8
5 @documentlanguage en
6 @afourpaper
7
8 @node Top
9 @top Different paper sizes for documentation.
10
11 This is a sample of a small papersize, which is useful when you
12 want to add a @code{\book@{@}} around some input.
13
14 @lilypond[verbatim,papersize=a8landscape]
15 \book {
16   \header {
17     title = "A scale in LilyPond"
18   }
19   \score {
20     \relative c' {
21       c4 d e f
22     }
23   }
24 }
25 @end lilypond
26
27 Here is a different paper size, and a changed tagline.
28
29 @lilypond[verbatim,quote,papersize=a8]
30 \book {
31   \header {
32     title = "A scale in LilyPond"
33     tagline = "... music notation for Everyone"
34   }
35   \score {
36     \relative c' {
37       c4 d e f
38     }
39   }
40 }
41 @end lilypond
42
43 @bye