diff options
author | Karl Berry <karl@freefriends.org> | 2014-03-12 22:37:31 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-03-12 22:37:31 +0000 |
commit | bbe7a06e1701b00caa23f4b2968b6a12f2347ca0 (patch) | |
tree | 1a4455285509ef62e3faf9a1ac196be10addbd58 /Master/texmf-dist/source/luatex | |
parent | bc14253e2a578d15f9bd8cc09b195552f102deb1 (diff) |
lilyglyphs (12mar14)
git-svn-id: svn://tug.org/texlive/trunk@33164 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/luatex')
17 files changed, 849 insertions, 14 deletions
diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/fonts/README-emmentaler b/Master/texmf-dist/source/luatex/lilyglyphs/fonts/README-emmentaler index 05584a026a9..4208f11aa0f 100644 --- a/Master/texmf-dist/source/luatex/lilyglyphs/fonts/README-emmentaler +++ b/Master/texmf-dist/source/luatex/lilyglyphs/fonts/README-emmentaler @@ -1,8 +1,8 @@ -The archive emmentaler-2-16-2 contains +The archive emmentaler-2-18-0 contains the Metafont sources used to create the Emmentaler OpenType fonts in the /fonts directory. They were taken from LilyPond's original Git repository at http://savannah.gnu.org/git/?group=lilypond -with the 2.16.2 release checked out. +with the 2.18.0 release checked out. diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-16-2.zip b/Master/texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-16-2.zip Binary files differdeleted file mode 100644 index 91015b29f3a..00000000000 --- a/Master/texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-16-2.zip +++ /dev/null diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-18-0.zip b/Master/texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-18-0.zip Binary files differnew file mode 100644 index 00000000000..7b2cbc3284c --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-18-0.zip diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/_template.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/_template.ly index fd61f98687d..2854b4ed7df 100644 --- a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/_template.ly +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/_template.ly @@ -39,18 +39,14 @@ \version "2.17.5" -%{ template for a single entry - replace 'EXAMPLE_...' by actual content %} - -% lilyglyphs entry -%%protected (use this line if you don't want the command to be generated) -%{ EXAMPLE_comment %} -EXAMPLE_command_name = { +%%lilyglyphs +% example comment +exampleCommand = { g'4 } - -\markup { EXAMPLE_command_name } -symbol = \EXAMPLE_command_name + +\markup { exampleCommand} +symbol = \exampleCommand \include "score.ily" % Example ends here diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/beamednotes.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/beamednotes.ly index e1ff33908a8..1175c8c203f 100644 --- a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/beamednotes.ly +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/beamednotes.ly @@ -39,9 +39,12 @@ \version "2.17.5" +%%%%%%%%%%%%%%%%%%%%%%% +% Groups with two beams %%lilyglyphs % two beamed quavers with diagonal beam +%%protected twoBeamedQuavers = { \override Beam#'damping = 0 d'8[ e'] @@ -50,3 +53,59 @@ twoBeamedQuavers = { \markup { twoBeamedQuavers } symbol = \twoBeamedQuavers \include "score.ily" + +%%%%%%%%%%%%%%%%%%%%%%%%% +% Groups with three beams + +%%lilyglyphs +% raise=-0.6 +% scale=0.9 +% three beamed quavers +%%protected +threeBeamedQuavers = { + \override Beam #'positions = #'(1 . 1) + e'8[ e' e'] +} + +\markup { threeBeamedQuavers } +symbol = \threeBeamedQuavers +\include "score.ily" + +%%lilyglyphs +% three beamed quavers, second dotted +%%protected +threeBeamedQuaversI = { + \override Beam #'positions = #'(1 . 1) + \override Score.SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1/8) + e'8[ e'8. e'16] +} + +\markup { threeBeamedQuaversI } +symbol = \threeBeamedQuaversI +\include "score.ily" + +%%lilyglyphs +% three beamed quavers, first dotted +%%protected +threeBeamedQuaversII = { + \override Beam #'positions = #'(1 . 1) + \override Score.SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1/12) + e'8.[ e'16 e'8] +} + +\markup { threeBeamedQuaversII } +symbol = \threeBeamedQuaversII +\include "score.ily" + +%%lilyglyphs +% three beamed quavers, last dotted +%%protected +threeBeamedQuaversIII = { + \override Beam #'positions = #'(1 . 1) + \override Score.SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1/12) + e'16[ e'8. e'8] +} + +\markup { threeBeamedQuaversIII } +symbol = \threeBeamedQuaversIII +\include "score.ily" diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.ly index ae47c9c2400..dc239da35d4 100644 --- a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.ly +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.ly @@ -93,7 +93,7 @@ symbol = \halfNoteDotted %%lilyglyphs % dotted half note with downward stem %%protected -halfNoteDottedDown = {# +halfNoteDottedDown = { \stemDown \override Stem#'length = 5 g'2. @@ -207,6 +207,7 @@ symbol = \quaver %%lilyglyphs % dotted quaver with upward stem +%%protected quaverDotted = { \override Stem#'length = 6 g'8. @@ -228,6 +229,7 @@ quaverDottedDown = { %%lilyglyphs % doubledotted quaver with upward stem +%%protected quaverDottedDouble = { \override Stem#'length = 6 g'8.. @@ -310,4 +312,66 @@ semiquaverDottedDoubleDown = { g'16.. } -
\ No newline at end of file +%%lilyglyphs +% demisemiquaver with upward stem +%%protected +demisemiquaver = { + \override Stem#'length = #7.5 + g'32 +} + +\markup { demisemiquaver } +symbol = \demisemiquaver +\include "score.ily" + + +%%lilyglyphs +% demisemiquaver with downward stem +%%protected +demisemiquaverDown = { + \stemDown + \override Stem#'length = #7.5 + g'32 +} + +%%lilyglyphs +% dotted demisemiquaver with upward stem +%%protected +demisemiquaverDotted = { + \override Stem#'length = #7.5 + g'32. +} + +\markup { demisemiquaverDotted } +symbol = \demisemiquaverDotted +\include "score.ily" + +%%lilyglyphs +% dotted demisemiquaver with downward stem +%%protected +demisemiquaverDottedDown = { + \stemDown + \override Stem#'length = #7.5 + g'32. +} + +%%lilyglyphs +% doubledotted demisemiquaver with upward stem +%%protected +demisemiquaverDottedDouble = { + \override Stem#'length = #7.5 + g'32.. +} + +\markup { demisemiquaverDottedDouble } +symbol = \demisemiquaverDottedDouble +\include "score.ily" + +%%lilyglyphs +% doubledotted demisemiquaver with downward stem +%%protected +demisemiquaverDottedDoubleDown = { + \stemDown + \override Stem#'length = #7.5 + g'32.. +} diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.pdf b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.pdf Binary files differnew file mode 100644 index 00000000000..c44e1401459 --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.pdf diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly new file mode 100644 index 00000000000..209e4accdc0 --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly @@ -0,0 +1,71 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% demisemiquaver.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +demisemiquaver with upward stem +%} + +demisemiquaver = { + \override Stem#'length = #7.5 + g'32 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \demisemiquaver +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly new file mode 100644 index 00000000000..4eeddda1f2d --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly @@ -0,0 +1,71 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% demisemiquaverDotted.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted demisemiquaver with upward stem +%} + +demisemiquaverDotted = { + \override Stem#'length = #7.5 + g'32. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \demisemiquaverDotted +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly new file mode 100644 index 00000000000..58449d8ebfe --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly @@ -0,0 +1,71 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% demisemiquaverDottedDouble.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted demisemiquaver with upward stem +%} + +demisemiquaverDottedDouble = { + \override Stem#'length = #7.5 + g'32.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \demisemiquaverDottedDouble +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly new file mode 100644 index 00000000000..4147746cef2 --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly @@ -0,0 +1,72 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% demisemiquaverDottedDoubleDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted demisemiquaver with downward stem +%} + +demisemiquaverDottedDoubleDown = { + \stemDown + \override Stem#'length = #7.5 + g'32.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \demisemiquaverDottedDoubleDown +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly new file mode 100644 index 00000000000..5079edb323c --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly @@ -0,0 +1,72 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% demisemiquaverDottedDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted demisemiquaver with downward stem +%} + +demisemiquaverDottedDown = { + \stemDown + \override Stem#'length = #7.5 + g'32. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \demisemiquaverDottedDown +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly new file mode 100644 index 00000000000..772ab223b94 --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly @@ -0,0 +1,72 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% demisemiquaverDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +demisemiquaver with downward stem +%} + +demisemiquaverDown = { + \stemDown + \override Stem#'length = #7.5 + g'32 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \demisemiquaverDown +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly new file mode 100644 index 00000000000..1ea92946854 --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly @@ -0,0 +1,71 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% threeBeamedQuavers.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +three beamed quavers +%} + +threeBeamedQuavers = { + \override Beam #'positions = #'(1 . 1) + e'8[ e' e'] +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \threeBeamedQuavers +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly new file mode 100644 index 00000000000..5bdebca329f --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly @@ -0,0 +1,72 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% threeBeamedQuaversI.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +three beamed quavers, second dotted +%} + +threeBeamedQuaversI = { + \override Beam #'positions = #'(1 . 1) + \override Score.SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1/8) + e'8[ e'8. e'16] +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \threeBeamedQuaversI +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly new file mode 100644 index 00000000000..1304da565ad --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly @@ -0,0 +1,72 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% threeBeamedQuaversII.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +three beamed quavers, first dotted +%} + +threeBeamedQuaversII = { + \override Beam #'positions = #'(1 . 1) + \override Score.SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1/12) + e'8.[ e'16 e'8] +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \threeBeamedQuaversII +} + diff --git a/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly new file mode 100644 index 00000000000..846a687e0a4 --- /dev/null +++ b/Master/texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly @@ -0,0 +1,72 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2013 Urs Liska and others, ul@openlilylib.org % +% % +% 'lilyglyphs' is free software: you can redistribute it and/or modify % +% it under the terms of the LaTeX Project Public License, either % +% version 1.3 of this license or (at your option) any later version. % +% You may find the latest version of this license at % +% http://www.latex-project.org/lppl.txt % +% more information on % +% http://latex-project.org/lppl/ % +% and version 1.3 or later is part of all distributions of LaTeX % +% version 2005/12/01 or later. % +% % +% This work has the LPPL maintenance status 'maintained'. % +% The Current Maintainer of this work is Urs Liska (see above). % +% % +% This work consists of the files listed in the file 'manifest.txt' % +% which can be found in the 'license' directory. % +% % +% This program is distributed in the hope that it will be useful, % +% but WITHOUT ANY WARRANTY; without even the implied warranty of % +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file defines a single glyph to be created with LilyPond: % +% % +% threeBeamedQuaversIII.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by lily-image-commands.py on 2013-11-21 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +three beamed quavers, last dotted +%} + +threeBeamedQuaversIII = { + \override Beam #'positions = #'(1 . 1) + \override Score.SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1/12) + e'16[ e'8. e'8] +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \threeBeamedQuaversIII +} + |