From: Phil Holmes Date: Fri, 5 Oct 2012 17:15:09 +0000 (+0100) Subject: MakeLSR update and addition of tick snippet X-Git-Tag: release/2.17.4-1~5 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8f113c7f9bd76a740f87eba49b8f59c722edc872;p=lilypond.git MakeLSR update and addition of tick snippet --- diff --git a/Documentation/notation/expressive.itely b/Documentation/notation/expressive.itely index 6d88b53264..157afe708c 100644 --- a/Documentation/notation/expressive.itely +++ b/Documentation/notation/expressive.itely @@ -952,6 +952,11 @@ divisiones, are supported. For details, see @ref{Divisiones}. @lilypondfile[verbatim,quote,texidoc,doctitle] {changing-the-breath-mark-symbol.ly} +@cindex tick mark + +@lilypondfile[verbatim,quote,texidoc,doctitle] +{using-a-tick-as-the-breath-mark-symbol.ly} + @cindex caesura @cindex railroad tracks diff --git a/Documentation/snippets/adding-timing-marks-to-long-glissandi.ly b/Documentation/snippets/adding-timing-marks-to-long-glissandi.ly index 587a5d9279..8e71beb0e7 100644 --- a/Documentation/snippets/adding-timing-marks-to-long-glissandi.ly +++ b/Documentation/snippets/adding-timing-marks-to-long-glissandi.ly @@ -5,7 +5,7 @@ % % This file is in the public domain. %% Note: this file works from version 2.15.15 -\version "2.15.15" +\version "2.16.0" \header { lsrtags = "expressive-marks, staff-notation, tweaks-and-overrides" diff --git a/Documentation/snippets/expressive-marks.snippet-list b/Documentation/snippets/expressive-marks.snippet-list index 54cbf78449..7fa455694f 100644 --- a/Documentation/snippets/expressive-marks.snippet-list +++ b/Documentation/snippets/expressive-marks.snippet-list @@ -1,5 +1,6 @@ adding-beams,-slurs,-ties-etc.-when-using-tuplet-and-non-tuplet-rhythms.ly adding-parentheses-around-an-expressive-mark-or-chordal-note.ly +adding-timing-marks-to-long-glissandi.ly adjusting-the-shape-of-falls-and-doits.ly alternative-breve-note.ly asymmetric-slurs.ly @@ -48,6 +49,7 @@ setting-hairpin-behavior-at-bar-lines.ly setting-the-minimum-length-of-hairpins.ly showing-the-same-articulation-above-and-below-a-note-or-chord.ly snap-pizzicato-or-bartok-pizzicato.ly +using-a-tick-as-the-breath-mark-symbol.ly using-arpeggiobracket-to-make-divisi-more-visible.ly using-double-slurs-for-legato-chords.ly using-the-whiteout-property.ly diff --git a/Documentation/snippets/making-glissandi-breakable.ly b/Documentation/snippets/making-glissandi-breakable.ly index 9eee164eb1..77834b1b8f 100644 --- a/Documentation/snippets/making-glissandi-breakable.ly +++ b/Documentation/snippets/making-glissandi-breakable.ly @@ -5,7 +5,7 @@ % % This file is in the public domain. %% Note: this file works from version 2.15.15 -\version "2.15.15" +\version "2.16.0" \header { lsrtags = "staff-notation, tweaks-and-overrides" diff --git a/Documentation/snippets/new/using-a-tick-as-the-breath-mark-symbol.ly b/Documentation/snippets/new/using-a-tick-as-the-breath-mark-symbol.ly new file mode 100644 index 0000000000..95d81cd6cb --- /dev/null +++ b/Documentation/snippets/new/using-a-tick-as-the-breath-mark-symbol.ly @@ -0,0 +1,25 @@ +\version "2.17.4" + +\header { + lsrtags = "expressive-marks" + + texidoc = " +Vocal and wind music frequently uses a tick mark as a breathing sign. This +indicates a breath that subtracts a little time from the previous note rather +than causing a short pause, which is indicated by the comma breath mark. The +mark can be moved up a little to take it away from the stave. +" + doctitle = "Using a tick as the breath mark symbol" +} + +\relative c'' { + c2 + \breathe + d2 + \override BreathingSign #'Y-offset = #2.6 + \override BreathingSign #'text = + \markup { \musicglyph #"scripts.tickmark" } + c2 + \breathe + d2 +} diff --git a/Documentation/snippets/staff-notation.snippet-list b/Documentation/snippets/staff-notation.snippet-list index 483a17253e..61c63e2d44 100644 --- a/Documentation/snippets/staff-notation.snippet-list +++ b/Documentation/snippets/staff-notation.snippet-list @@ -3,6 +3,7 @@ adding-an-extra-staff-at-a-line-break.ly adding-an-extra-staff.ly adding-indicators-to-staves-which-get-split-after-a-break.ly adding-orchestral-cues-to-a-vocal-score.ly +adding-timing-marks-to-long-glissandi.ly alternative-bar-numbering.ly changing-the-number-of-lines-in-a-staff.ly changing-the-staff-size.ly @@ -17,6 +18,7 @@ how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-2.ly incipit.ly inserting-score-fragments-above-a-staff,-as-markups.ly letter-tablature-formatting.ly +making-glissandi-breakable.ly making-some-staff-lines-thicker-than-the-others.ly measure-counter.ly mensurstriche-layout-bar-lines-between-the-staves.ly diff --git a/Documentation/snippets/tweaks-and-overrides.snippet-list b/Documentation/snippets/tweaks-and-overrides.snippet-list index 8ceb9fa8ac..f45e6ed6ba 100644 --- a/Documentation/snippets/tweaks-and-overrides.snippet-list +++ b/Documentation/snippets/tweaks-and-overrides.snippet-list @@ -1,3 +1,4 @@ +adding-timing-marks-to-long-glissandi.ly adjusting-grace-note-spacing.ly altering-the-length-of-beamed-stems.ly alternative-bar-numbering.ly @@ -47,6 +48,7 @@ inserting-a-caesura.ly keep-change-clefs-full-sized.ly line-arrows.ly making-an-object-invisible-with-the-transparent-property.ly +making-glissandi-breakable.ly manually-controlling-beam-positions.ly mensurstriche-layout-bar-lines-between-the-staves.ly moving-dotted-notes-in-polyphony.ly diff --git a/Documentation/snippets/using-a-tick-as-the-breath-mark-symbol.ly b/Documentation/snippets/using-a-tick-as-the-breath-mark-symbol.ly new file mode 100644 index 0000000000..54d68a8d2f --- /dev/null +++ b/Documentation/snippets/using-a-tick-as-the-breath-mark-symbol.ly @@ -0,0 +1,33 @@ +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.17.4 +\version "2.17.4" + +\header { + lsrtags = "expressive-marks" + + texidoc = " +Vocal and wind music frequently uses a tick mark as a breathing sign. This +indicates a breath that subtracts a little time from the previous note rather +than causing a short pause, which is indicated by the comma breath mark. The +mark can be moved up a little to take it away from the stave. +" + doctitle = "Using a tick as the breath mark symbol" +} % begin verbatim + + +\relative c'' { + c2 + \breathe + d2 + \override BreathingSign #'Y-offset = #2.6 + \override BreathingSign + #'text = \markup { \musicglyph #"scripts.tickmark" } + c2 + \breathe + d2 +}