]> git.donarmstrong.com Git - lilypond.git/commitdiff
Local updates to LSR
authorPhil Holmes <mail@philholmes.net>
Sat, 2 Feb 2013 14:11:17 +0000 (14:11 +0000)
committerPhil Holmes <mail@philholmes.net>
Sat, 2 Feb 2013 14:15:34 +0000 (14:15 +0000)
Documentation/snippets/adding-a-figured-bass-above-or-below-the-notes.ly
Documentation/snippets/changing-the-tuplet-number.ly
Documentation/snippets/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly
Documentation/snippets/creating-a-sequence-of-notes-on-various-pitches.ly
Documentation/snippets/entering-several-tuplets-using-only-one--times-command.ly
Documentation/snippets/fretted-headword.ly
Documentation/snippets/horizontally-aligning-custom-dynamics-e.g.-sempre-pp,-piu-f,-subito-p.ly
Documentation/snippets/score-for-diatonic-accordion.ly

index 5def9b0d07750c745c2c2dca08ffb77b0e31fb2c..77d5beaa6009983d39b352cb2b931579d4cbf6c2 100644 (file)
@@ -4,6 +4,13 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
+%% Note: this file works from version 2.17.6
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
 \version "2.17.6"
 
 \header {
index 134be353103627a18d8e20bb95e060650c356857..a33a7fb791f240c1d5dec127248184e99f9df6ae 100644 (file)
@@ -1,9 +1,10 @@
-%% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
-%% and then run scripts/auxiliar/makelsr.py
-%%
-%% This file is in the public domain.
+% 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.11
 \version "2.17.11"
 
 \header {
@@ -11,8 +12,7 @@
 
   texidoc = "
 By default, only the numerator of the tuplet number is printed over the
-tuplet bracket, i.e., the denominator of the argument to the
-@code{\\times} command. Alternatively, num:den of the tuplet number may
+tuplet bracket. Alternatively, num:den of the tuplet number may
 be printed, or the tuplet number may be suppressed altogether.
 
 "
@@ -20,6 +20,7 @@ be printed, or the tuplet number may be suppressed altogether.
 } % begin verbatim
 
 
+
 \relative c'' {
   \tuplet 3/2 { c8 c c }
   \tuplet 3/2 { c8 c c }
index 64afc105e250e2f8799af5a261fd2c0ad50f83a9..74a6d43c10c7bbaf2a63be739f53cbd97439cfe8 100644 (file)
@@ -4,7 +4,7 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.16.0
+%% Note: this file works from version 2.17.11
 \version "2.17.11"
 
 \header {
index 489f0db3b9124e43570aeab0cbda06eab15c08b0..22476cebfbccd592b6b3e0bdad5a403651d5ef7f 100644 (file)
@@ -4,7 +4,7 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.16.0
+%% Note: this file works from version 2.17.11
 \version "2.17.11"
 
 \header {
index c83f493935ad97c5b015dba9e824a14ecd7477e5..5e67e60d479c112c612c57e568dfe9d111641aca 100644 (file)
@@ -1,9 +1,10 @@
-%% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
-%% and then run scripts/auxiliar/makelsr.py
-%%
-%% This file is in the public domain.
+% 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.11
 \version "2.17.11"
 
 \header {
 
   texidoc = "
 The property @code{tupletSpannerDuration} sets how long each of the
-tuplets contained within the brackets after @code{\\times} should last.
+tuplets contained within the brackets after @code{\\tuplet} should last.
 Many consecutive tuplets can then be placed within a single
-@code{\\times} expression, thus saving typing.
-
-In the example, two triplets are shown, while @code{\\times} was
-entered only once.
-
-
-Read the relevant sections of the Notation Reference for more
-information about @code{ly:make-moment}.
+@code{\\tuplet} expression, thus saving typing.
 
+There are several ways to set @code{tupletSpannerDuration}.  The command
+@code{\\tupletSpan} sets it to a given duration, and clears it when
+instead of a duration @code{\\default} is specified.  Another way is
+to use an optional argument with @code{\\tuplet}.
 "
-  doctitle = "Entering several tuplets using only one \\times command"
+  doctitle = "Entering several tuplets using only one \\tuplet command"
 } % begin verbatim
 
 
+
 \relative c' {
   \time 2/4
   \tupletSpan 4
-  \tuplet 3/2 { c8 c c c c c }
+  \tuplet 3/2 { c8^"\\tupletSpan 4" c c c c c }
+  \tupletSpan \default
+  \tuplet 3/2 { c8^"\\tupletSpan \\default" c c c c c }
+  \tuplet 3/2 4 { c8^"\\tuplet 3/2 4 {...}" c c c c c }
 }
index 8c228ee33034afc88730c8d0003d3175464e5fd2..ad985432eaa461d88a65f4e767c29ff88332996a 100644 (file)
@@ -4,7 +4,7 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.17.6
+%% Note: this file works from version 2.17.11
 % INSPIRATIONAL HEADER FOR LILYPOND DOCUMENTATION fretted-strings %
 % Passage from Johann Kaspar Mertz "Opern Revue, Op. 8, no. 17"   %
 % on melodies from Bellini's "Norma"                              %
index 5a57a7a743795a4ff42fd4b41f832d68d0ec270b..b336b35caf5dd57ff28804e2c7bab586698813ed 100644 (file)
@@ -4,6 +4,13 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
+%% Note: this file works from version 2.17.6
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
 \version "2.17.6"
 
 \header {
index 311776013c4e0c06128c18014e5fb3fd666cce25..c60c404e6361cdfca5c4c2c63695afd4764cdee5 100644 (file)
@@ -4,7 +4,7 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.17.6
+%% Note: this file works from version 2.17.11
 \version "2.17.11"
 
 \header {