\markup
can be tweaked by changing the
\translate-scaled
arguments. \translate-scaled
is
used here rather than \translate
in order to let the
positioning of the symbol parts adapt to changes of font-size
.
What's this? Searching the LSR Browse by date Contributing Snippet database | Browsing items 10−19 out of 943 |
\markup
can be tweaked by changing the
\translate-scaled
arguments. \translate-scaled
is
used here rather than \translate
in order to let the
positioning of the symbol parts adapt to changes of font-size
.
After switching from Sibelius, I missed having all my repeat barlines have "wings" on them. It's not documented in the Lilypond documentation, but it's not too hard to accomplish. Just add this inside your Staff:
\set Score.startRepeatType = #"[|:"
\set Score.endRepeatType = #":|]"
\set Score.doubleRepeatType = #":|][|:"
When writing a figured bass, you can place the figures above or below the bass notes, by defining the BassFigureAlignmentPositioning.direction
property (exclusively in a Staff
context). Choices are #UP
(or #1
), #CENTER
(or #0
) and #DOWN
(or #-1
).
This property can be changed as many times as you wish. Use \once \override
if you don't want the override to apply to the whole score.
To add an extra staff after the start of a piece, you can choose between having brackets or braces when you go over a new line:
=> Use PianoStaff
instead of StaffGroup
or ChoirStaff
in the code.
You may wish to remove the clef and not only the key:
=> See both \override
s in the code.
You may wish to remove also the little part of staff at the beginning of the extra staff:
=> Use #'stencil = ##f
instead of #'transparent = ##t
for both \override
s.
If you want to keep the little beginning of staff, keep at least one #'transparent = ##t
.