From cbaeb655cb50df3622368576e29bc23fec529fe3 Mon Sep 17 00:00:00 2001 From: Jay Piamjariyakul Date: Wed, 7 Oct 2020 12:43:41 +0100 Subject: [PATCH] lilypond: add page (#4500) --- pages/common/lilypond.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/lilypond.md diff --git a/pages/common/lilypond.md b/pages/common/lilypond.md new file mode 100644 index 0000000000..1a07ac1da8 --- /dev/null +++ b/pages/common/lilypond.md @@ -0,0 +1,24 @@ +# lilypond + +> Typeset music and/or produce MIDI from file. +> More information: . + +- Compile a lilypond file into a PDF: + +`lilypond {{path/to/file}}` + +- Compile into the specified format: + +`lilypond --formats={{format_dump}} {{path/to/file}}` + +- Compile the specified file, suppressing progress updates: + +`lilypond -s {{path/to/file}}` + +- Compile the specified file, and also specify the output filename: + +`lilypond --output={{path/to/output_file}} {{path/to/input_file}}` + +- Show the current version of lilypond: + +`lilypond --version`