From 5a34032fe4d83de1ccbf9cf8e13fc6bfb4f668ce Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Sat, 17 Mar 2018 20:13:53 +0100 Subject: Initial commit --- lilypond.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 lilypond.md (limited to 'lilypond.md') diff --git a/lilypond.md b/lilypond.md new file mode 100644 index 0000000..a59c48d --- /dev/null +++ b/lilypond.md @@ -0,0 +1,38 @@ +# Lilypond stuff + +Docs: `info LilyPond`. + +## Fine-grained page size + + #(set! paper-alist (cons '("custom size" . (cons (* 3.8 cm) (* 1.6 cm))) + paper-alist)) + \paper { + #(set-paper-size "custom size") + } + +## Remove footer + + \header { + tagline = ##f + } + +## Rhythm stuff + +### Setting beat divisions + + \overrideTimeSignatureSettings + 4/4 % timeSignatureFraction + 1/4 % baseMomentFraction + #'(3 1) % beatStructure + #'() % beamExceptions + \time 4/4 + \repeat unfold 8 { c8 } | + \revertTimeSignatureSettings 4/4 % reverts to defaults + \time 4/4 + \repeat unfold 8 { c8 } | + +### Pickup measure + + \time 3/4 + \partial 8 + e8 | a4 c8 b c4 | -- cgit v1.2.3