]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lilypond-book/tex-include-options.lytex
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / lilypond-book / tex-include-options.lytex
1 \documentclass{article}
2 \begin{document}
3 Including a LilyPond file with options (quote and noindent):
4
5 \lilypondfile[quote,noindent]{include2.ly}
6
7 From a subdirectory:
8
9 \lilypondfile[quote,noindent]{include/example.ly}
10
11 Within a lilypond block:
12
13 \begin{lilypond}[quote,noindent]
14   \include "include/myvar.ily"
15   \relative c'' { \myVar }
16 \end{lilypond}
17
18 Include a file that includes a file:
19
20 \lilypondfile[quote,noindent]{include.ly}
21
22 \end{document}