]> git.donarmstrong.com Git - lilypond.git/blob - input/test/header-ifelse.ly
*** empty log message ***
[lilypond.git] / input / test / header-ifelse.ly
1 \version "2.1.30"
2
3
4 #(if (not (defined? 'pieceTagLine))
5   (define pieceTagLine (string-append "Jeremie " (lilypond-version) " was here")))
6
7 \header{
8
9     tagline = \pieceTagLine
10     texidoc = "
11
12 High level functionality (eg. conditional defines),
13 can be accomplished with GUILE.
14
15 This example puts the current version in the tagline via Scheme,
16 however, the tagline is not printed to the collated webpage snippets.
17
18
19 }
20
21 \score{ \notes{ c'4 }
22 \paper {raggedright=##t}
23 }
24