+++ /dev/null
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.11.38"
-
-\header {
- lsrtags = "pitches, staff-notation, tweaks-and-overrides"
- texidoc = "
-The command @code{\\clef \"treble_8\"} is equivalent to setting
-@code{clefGlyph}, @code{clefPosition} (which controls the Y-position of
-the clef), @code{middleCPosition} and @code{clefOctavation}. A clef is
-printed when any of these properties are changed.
-
-
-Note that changing the glyph, the position of the clef, or the
-octavation, does not in itself change the position of subsequent notes
-on the staff: the position of middle C must also be specified to do
-this. The positional parameters are relative to the staff center line,
-positive numbers displacing upwards, counting one for each line and
-space. The @code{clefOctavation} value would normally be set to 7, -7,
-15 or -15, but other values are valid.
-
-
-When a clef change takes place at a line break the new clef symbol is
-printed at both the end of the previous line and the beginning of the
-new line by default. If the warning clef at the end of the previous
-line is not required it can be suppressed by setting the @code{Staff}
-property @code{explicitClefVisibility} to the value
-@code{end-of-line-invisible}. The default behavior can be recovered
-with @code{\\unset Staff.explicitClefVisibility}.
-
-The following examples show the possibilities when setting these
-properties manually. On the first line, the manual changes preserve the
-standard relative positioning of clefs and notes, whereas on the second
-line, they do not.
-" }
-% begin verbatim
-{
- % The default treble clef
- c'1
- % The standard bass clef
- \set Staff.clefGlyph = #"clefs.F"
- \set Staff.clefPosition = #2
- \set Staff.middleCPosition = #6
- c'
- % The baritone clef
- \set Staff.clefGlyph = #"clefs.C"
- \set Staff.clefPosition = #4
- \set Staff.middleCPosition = #4
- c'
- % The standard choral tenor clef
- \set Staff.clefGlyph = #"clefs.G"
- \set Staff.clefPosition = #-2
- \set Staff.clefOctavation = #-7
- \set Staff.middleCPosition = #1
- c'
- % A non-standard clef
- \set Staff.clefPosition = #0
- \set Staff.clefOctavation = #0
- \set Staff.middleCPosition = #-4
- c' \break
-
- % The following clef changes do not preserve
- % the normal relationship between notes and clefs:
-
- \set Staff.clefGlyph = #"clefs.F"
- \set Staff.clefPosition = #2
- c'
- \set Staff.clefGlyph = #"clefs.G"
- c'
- \set Staff.clefGlyph = #"clefs.C"
- c'
- \set Staff.clefOctavation = #7
- c'
- \set Staff.clefOctavation = #0
- \set Staff.clefPosition = #0
- c'
-
- % Here we go back to the normal clef:
-
- \set Staff.middleCPosition = #0
- c'
-}
applying-note-head-styles-depending-on-the-step-of-the-scale.ly
transposing-pitches-with-minimum-accidentals-smart-transpose.ly
ottava-text.ly
+tweaking-clef-properties.ly
preventing-extra-naturals-from-being-automatically-added.ly
ambitus-with-multiple-voices.ly
generating-random-notes.ly
-clefs-commonly-tweaked-properties.ly
dodecaphonic-style-accidentals-for-each-note-including-naturals.ly
preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
quoting-another-voice-with-transposition.ly
line.
In such cases, the right end of the mark has to be aligned with the
-final barline, as demonstrated on the second line of this example.
+final bar line, as demonstrated on the second line of this example.
" }
% begin verbatim
\relative c'' {
\override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible
- g2 c d, a'
+ g2 c
+ d, a'
\mark \default
\break
\override Score.RehearsalMark #'self-alignment-X = #right
- g b, c1 \bar "||"
+ g b,
+ c1 \bar "||"
\mark "D.C. al Fine"
}
adding-an-extra-staff-at-a-line-break.ly
display-bracket-with-only-one-staff-in-a-system.ly
time-signature-in-parentheses.ly
+tweaking-clef-properties.ly
adding-an-extra-staff.ly
changing-the-staff-size.ly
use-square-bracket-at-the-start-of-a-staff-group.ly
quoting-another-voice-with-transposition.ly
-clefs-commonly-tweaked-properties.ly
quoting-another-voice.ly
volta-multi-staff.ly
inserting-score-fragments-above-a-staff,-as-markups.ly
--- /dev/null
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\version "2.11.38"
+
+\header {
+ lsrtags = "pitches, staff-notation, tweaks-and-overrides"
+ texidoc = "
+The command @code{\\clef \"treble_8\"} is equivalent to setting
+@code{clefGlyph}, @code{clefPosition} (which controls the Y-position of
+the clef), @code{middleCPosition} and @code{clefOctavation}. A clef is
+printed when any of these properties are changed.
+
+
+Note that changing the glyph, the position of the clef, or the
+octavation, does not in itself change the position of subsequent notes
+on the staff: the position of middle C must also be specified to do
+this. The positional parameters are relative to the staff center line,
+positive numbers displacing upwards, counting one for each line and
+space. The @code{clefOctavation} value would normally be set to 7, -7,
+15 or -15, but other values are valid.
+
+
+When a clef change takes place at a line break the new clef symbol is
+printed at both the end of the previous line and the beginning of the
+new line by default. If the warning clef at the end of the previous
+line is not required it can be suppressed by setting the @code{Staff}
+property @code{explicitClefVisibility} to the value
+@code{end-of-line-invisible}. The default behavior can be recovered
+with @code{\\unset Staff.explicitClefVisibility}.
+
+The following examples show the possibilities when setting these
+properties manually. On the first line, the manual changes preserve the
+standard relative positioning of clefs and notes, whereas on the second
+line, they do not.
+" }
+% begin verbatim
+{
+ % The default treble clef
+ c'1
+ % The standard bass clef
+ \set Staff.clefGlyph = #"clefs.F"
+ \set Staff.clefPosition = #2
+ \set Staff.middleCPosition = #6
+ c'
+ % The baritone clef
+ \set Staff.clefGlyph = #"clefs.C"
+ \set Staff.clefPosition = #4
+ \set Staff.middleCPosition = #4
+ c'
+ % The standard choral tenor clef
+ \set Staff.clefGlyph = #"clefs.G"
+ \set Staff.clefPosition = #-2
+ \set Staff.clefOctavation = #-7
+ \set Staff.middleCPosition = #1
+ c'
+ % A non-standard clef
+ \set Staff.clefPosition = #0
+ \set Staff.clefOctavation = #0
+ \set Staff.middleCPosition = #-4
+ c' \break
+
+ % The following clef changes do not preserve
+ % the normal relationship between notes and clefs:
+
+ \set Staff.clefGlyph = #"clefs.F"
+ \set Staff.clefPosition = #2
+ c'
+ \set Staff.clefGlyph = #"clefs.G"
+ c'
+ \set Staff.clefGlyph = #"clefs.C"
+ c'
+ \set Staff.clefOctavation = #7
+ c'
+ \set Staff.clefOctavation = #0
+ \set Staff.clefPosition = #0
+ c'
+
+ % Here we go back to the normal clef:
+
+ \set Staff.middleCPosition = #0
+ c'
+}
display-bracket-with-only-one-staff-in-a-system.ly
-time-signature-in-parentheses.ly
+rhythmic-slashes.ly
changing-the-default-text-font-family.ly
drawing-boxes-around-grobs.ly
manually-controlling-beam-positions.ly
controlling-tuplet-bracket-visibility.ly
positioning-multi--measure-rests.ly
changing-the-staff-size.ly
-clefs-commonly-tweaked-properties.ly
vertically-aligning-ossias-and-lyrics.ly
changing-properties-for-individual-grobs.ly
altering-the-number-of-stems-in-a-beam.ly
mensurstriche-layout-bar-lines-between-the-staves.ly
+tweaking-clef-properties.ly
vertically-centered-dynamics-and-textscripts.ly
proportional-strict-notespacing.ly
making-an-object-invisible-with-the-transparent-property.ly
creating-text-spanners.ly
caesura-railtracks-with-fermata.ly
changing-form-of-multi--measure-rests.ly
-rhythmic-slashes.ly
+time-signature-in-parentheses.ly
changing-a-single-notes-size-in-a-chord.ly
nesting-staves.ly