r
, so just type r
followed by the duration.
What's this? Searching the LSR Browse by date Contributing Snippet database | Browsing items 50−59 out of 943 |
There are a couple ways to get the current date in your score - using Scheme and a header that suits you (as you may find in the Adding the current date to a score
example), or placing the same Scheme code in a \markup
block.
One more option is to place the date in the tagline. This places the date at the bottom of the last page and appears like this -
Engraved on April 26, 2009 with Lilypond 2.12.2 (http://lilypond.org)
The format of the date can be changed according to these parameters:
In figured bass, specially designed glyphs for 6\\
,
7\\
, and 9\\
are used by default. Similarly,
specially designed glyphs for symbols 2\+
, 4\+
, and
5\+
are used by default if plus signs appear after the number.
To change that, pass an alist to figuredBassPlusStrokedAlist
and
set the glyph in question to #f
(or omit it).
Using \override Slur.positions
it is possible to set the vertical position of the start and end points of a slur to absolute values (or rather, forcing LilyPond's slur algorithm to consider these values as desired). In many cases, this means a lot of trial and error until good values are found. You probably have tried the \offset
command next just to find out that it doesn't work for slurs, emitting a warning instead.
The code in this snippet allows you to tweak the vertical start and end positions by specifying relative changes, similar to \offset
.
Syntax: \offsetPositions #'(dy1 . dy2)