diff options
author | Karl Berry <karl@freefriends.org> | 2020-09-29 21:24:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-09-29 21:24:01 +0000 |
commit | cb751fb6d992d7342f7f82ea76f29caff73e69e5 (patch) | |
tree | 2b01684636def7b446b53f701074ac6148a98f26 /Master/texmf-dist/source/latex/lilyglyphs/glyphimages | |
parent | 070ddc09ee29119848c748b6975b3a8f18f526cc (diff) |
lilyglyphs (29sep20)
git-svn-id: svn://tug.org/texlive/trunk@56473 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/lilyglyphs/glyphimages')
45 files changed, 3475 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/_template.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/_template.ly new file mode 100644 index 00000000000..53e4b907d9c --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/_template.ly @@ -0,0 +1,54 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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 set of glyphs to be compiled in LilyPond % +% % +% EXAMPLE % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\version "2.17.5" + +%%lilyglyphs +% example comment +exampleCommand = { + g'4 +} + +\markup { exampleCommand} +symbol = \exampleCommand +\include "score.ily" + +% Example ends here +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/beamednotes.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/beamednotes.ly new file mode 100644 index 00000000000..542fe054fcd --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/beamednotes.ly @@ -0,0 +1,111 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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 set of glyphs to be compiled in LilyPond % +% % +% Beamed notes % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\version "2.17.5" + +%%%%%%%%%%%%%%%%%%%%%%% +% Groups with two beams + +%%lilyglyphs +% two beamed quavers with diagonal beam +%%protected +twoBeamedQuavers = { + \override Beam#'damping = 0 + d'8[ e'] +} + +\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/latex/lilyglyphs/glyphimages/definitions/dynamicsigns.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/dynamicsigns.ly new file mode 100644 index 00000000000..70e39770428 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/dynamicsigns.ly @@ -0,0 +1,62 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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 set of glyphs to be compiled in LilyPond % +% % +% Beamed notes % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\version "2.17.5" + + +%%lilyglyphs +% crescendo hairpin +crescHairpin = { + s1\< s4\! +} + +\markup { crescHairpin } +symbol = \crescHairpin +\include "score.ily" + + +%%lilyglyphs +% decrescendo hairpin +decrescHairpin = { + s1\> s4\! +} + +\markup { decrescHairpin } +symbol = \decrescHairpin +\include "score.ily" diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/fancyexamples.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/fancyexamples.ly new file mode 100644 index 00000000000..b065b1450b1 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/fancyexamples.ly @@ -0,0 +1,61 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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 set of glyphs to be compiled in LilyPond % +% % +% EXAMPLE % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\version "2.17.5" + +%{ template for a single entry + replace 'EXAMPLE_...' by actual content %} + +%%lilyglyphs +% example of a fancy notation +lilyFancyExample = \relative e' { + \override NoteHead.transparent = ##t + \override Stem #'length = #4 + \override Stem #'thickness = #1.6 + e4-.( e-. e-. e-.) \glissando + s4 \stemDown a4 \laissezVibrer +} + +\markup { lilyFancyExample } +symbol = \fancyExample +\include "score.ily" + +% Example ends here +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/score.ily b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/score.ily new file mode 100644 index 00000000000..2f98d32dc1b --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/score.ily @@ -0,0 +1,49 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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 is to be included in the definitions .ly files % +% % +% Use it to have a LilyPond-compilable .ly file if you want % +% to visually check your new glyphs before creating the % +% LaTeX commands % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \symbol +}
\ No newline at end of file diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/singlenotes.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/singlenotes.ly new file mode 100644 index 00000000000..a30853c49bc --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/definitions/singlenotes.ly @@ -0,0 +1,377 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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 set of glyphs to be compiled in LilyPond % +% % +% Single notes % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +\version "2.17.5" + +%{ template for a single entry + replace 'EXAMPLE_...' by actual content %} +%%lilyglyphs +%%protected (use this line if you don't want the command to be generated) +% EXAMPLE_comment +EXAMPLE_command_name = { + g'4 +} + +\markup { EXAMPLE_command_name } +symbol = \EXAMPLE_command_name +\include "score.ily" + +% Example ends here +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%lilyglyphs +% half note with upward stem +%%protected +halfNote = { + \override Stem#'length = 5 + g'2 +} + +\markup { halfNote } +symbol = \halfNote +\include "score.ily" + +%%lilyglyphs +% half note with downward stem +% scale=0.75 +% raise=-0.4 +%%protected +halfNoteDown = { + \stemDown + \override Stem#'length = 5 + g'2 +} + +%%lilyglyphs +% dotted half note with upward stem +%%protected +halfNoteDotted = { + \override Stem#'length = 5 + g'2. +} + +\markup { halfNoteDotted } +symbol = \halfNoteDotted +\include "score.ily" + +%%lilyglyphs +% dotted half note with downward stem +%%protected +halfNoteDottedDown = { + \stemDown + \override Stem#'length = 5 + g'2. +} + +%%lilyglyphs +% doubledotted half note with upward stem +%%protected +halfNoteDottedDouble = { + \override Stem#'length = 5 + g'2.. +} + +\markup { halfNoteDottedDouble } +symbol = \halfNoteDottedDouble +\include "score.ily" + +%%lilyglyphs +% doubledotted half note with downward stem +%%protected +halfNoteDottedDoubleDown = { + \stemDown + \override Stem#'length = 5 + g'2.. +} + +%%lilyglyphs +% crotchet with upward stem +%%protected +crotchet = { + \override Stem#'length = 5 + g'4 +} + +\markup { crotchet } +symbol = \crotchet +\include "score.ily" + +%%lilyglyphs +% crotchet with downward stem +%%protected +crotchetDown = { + \stemDown + \override Stem#'length = 5 + g'4 +} + +%%lilyglyphs +% dotted crotchet with upward stem +%%protected +crotchetDotted = { + \override Stem#'length = 5 + g'4. +} + +\markup { crotchetDotted } +symbol = \crotchetDotted +\include "score.ily" + +%%lilyglyphs +% dotted crotchet with downward stem +%%protected +crotchetDottedDown = { + \stemDown + \override Stem#'length = 5 + g'4. +} + +%%lilyglyphs +% doubledotted crotchet with upward stem +%%protected +crotchetDottedDouble = { + \override Stem#'length = 5 + g'4.. +} + +\markup { crotchetDottedDouble } +symbol = \crotchetDottedDouble +\include "score.ily" + + +%%lilyglyphs +% doubledotted crotchet with upward stem +%%protected +crotchetDottedDoubleDown = { + \stemDown + \override Stem#'length = 5 + g'4.. +} + +%%lilyglyphs +% quaver with upward stem +%%protected +quaver = { + \override Stem#'length = 6 + g'8 +} + +%%lilyglyphs +% quaver with downward stem +%%protected +quaverDown = { + \stemDown + \override Stem#'length = 6 + g'8 +} + +\markup { quaver } +symbol = \quaver +\include "score.ily" + +%%lilyglyphs +% dotted quaver with upward stem +%%protected +quaverDotted = { + \override Stem#'length = 6 + g'8. +} + +\markup { quaverDotted } +symbol = \quaverDotted +\include "score.ily" + + +%%lilyglyphs +% dotted quaver with downward stem +%%protected +quaverDottedDown = { + \stemDown + \override Stem#'length = 6 + g'8. +} + +%%lilyglyphs +% doubledotted quaver with upward stem +%%protected +quaverDottedDouble = { + \override Stem#'length = 6 + g'8.. +} + +\markup { quaverDottedDouble } +symbol = \quaverDottedDouble +\include "score.ily" + +%%lilyglyphs +% doubledotted quaver with downward stem +%%protected +quaverDottedDoubleDown = { + \stemDown + \override Stem#'length = 6 + g'8.. +} + +%%lilyglyphs +% semiquaver with upward stem +%%protected +semiquaver = { + \override Stem#'length = #6.5 + g'16 +} + +\markup { semiquaver } +symbol = \semiquaver +\include "score.ily" + + +%%lilyglyphs +% semiquaver with downward stem +%%protected +semiquaverDown = { + \stemDown + \override Stem#'length = #6.5 + g'16 +} + +%%lilyglyphs +% dotted semiquaver with upward stem +%%protected +semiquaverDotted = { + \override Stem#'length = #6.5 + g'16. +} + +\markup { semiquaverDotted } +symbol = \semiquaverDotted +\include "score.ily" + +%%lilyglyphs +% dotted semiquaver with downward stem +%%protected +semiquaverDottedDown = { + \stemDown + \override Stem#'length = #6.5 + g'16. +} + +%%lilyglyphs +% doubledotted semiquaver with upward stem +%%protected +semiquaverDottedDouble = { + \override Stem#'length = #6.5 + g'16.. +} + +\markup { semiquaverDottedDouble } +symbol = \semiquaverDottedDouble +\include "score.ily" + +%%lilyglyphs +% doubledotted semiquaver with downward stem +%%protected +semiquaverDottedDoubleDown = { + \stemDown + \override Stem#'length = #6.5 + g'16.. +} + +%%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/latex/lilyglyphs/glyphimages/generated_src/lily-crescHairpin.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crescHairpin.ly new file mode 100644 index 00000000000..416a76f2578 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crescHairpin.ly @@ -0,0 +1,69 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% crescHairpin.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +crescendo hairpin +%} + +crescHairpin = { + s1\< s4\! +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \crescHairpin +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchet.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchet.ly new file mode 100644 index 00000000000..0cbe3b372f9 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchet.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% crotchet.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +crotchet with upward stem +%} + +crotchet = { + \override Stem#'length = 5 + g'4 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \crotchet +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDotted.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDotted.ly new file mode 100644 index 00000000000..af16947f74f --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDotted.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% crotchetDotted.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted crotchet with upward stem +%} + +crotchetDotted = { + \override Stem#'length = 5 + g'4. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \crotchetDotted +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDouble.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDouble.ly new file mode 100644 index 00000000000..f3492e3eae6 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDouble.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% crotchetDottedDouble.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted crotchet with upward stem +%} + +crotchetDottedDouble = { + \override Stem#'length = 5 + g'4.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \crotchetDottedDouble +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDoubleDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDoubleDown.ly new file mode 100644 index 00000000000..cff9a90e5f9 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDoubleDown.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-2020 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: % +% % +% crotchetDottedDoubleDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted crotchet with upward stem +%} + +crotchetDottedDoubleDown = { + \stemDown + \override Stem#'length = 5 + g'4.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \crotchetDottedDoubleDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDown.ly new file mode 100644 index 00000000000..39f042100f4 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDown.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-2020 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: % +% % +% crotchetDottedDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted crotchet with downward stem +%} + +crotchetDottedDown = { + \stemDown + \override Stem#'length = 5 + g'4. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \crotchetDottedDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDown.ly new file mode 100644 index 00000000000..00e0a719849 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-crotchetDown.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-2020 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: % +% % +% crotchetDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +crotchet with downward stem +%} + +crotchetDown = { + \stemDown + \override Stem#'length = 5 + g'4 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \crotchetDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-decrescHairpin.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-decrescHairpin.ly new file mode 100644 index 00000000000..1f43d7ba45d --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-decrescHairpin.ly @@ -0,0 +1,69 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% decrescHairpin.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +decrescendo hairpin +%} + +decrescHairpin = { + s1\> s4\! +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \decrescHairpin +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly new file mode 100644 index 00000000000..a829678420f --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly new file mode 100644 index 00000000000..3e1f112b3ec --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly new file mode 100644 index 00000000000..afb6f6f71a9 --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly new file mode 100644 index 00000000000..1dc8d900a10 --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly new file mode 100644 index 00000000000..ebffc5a99dd --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly new file mode 100644 index 00000000000..ddb9be80bce --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-fancyExample.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-fancyExample.ly new file mode 100644 index 00000000000..280e51e69ec --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-fancyExample.ly @@ -0,0 +1,74 @@ + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% fancyExample.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by genImageCommands.py on 2013-09-07 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +example of a fancy notation +%} + +fancyExample = { + \override NoteHead.transparent = ##t + \override Stem #'length = #4 + \override Stem #'thickness = #1.6 + e4-.( e-. e-. e-.) \glissando + s4 \stemDown a4 \laissezVibrer +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \fancyExample +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNote.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNote.ly new file mode 100644 index 00000000000..bf24de1a11f --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNote.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% halfNote.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +half note with upward stem +%} + +halfNote = { + \override Stem#'length = 5 + g'2 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \halfNote +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDotted.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDotted.ly new file mode 100644 index 00000000000..5657c74cd79 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDotted.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% halfNoteDotted.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted half note with upward stem +%} + +halfNoteDotted = { + \override Stem#'length = 5 + g'2. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \halfNoteDotted +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDouble.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDouble.ly new file mode 100644 index 00000000000..244b3d3eac2 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDouble.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% halfNoteDottedDouble.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted half note with upward stem +%} + +halfNoteDottedDouble = { + \override Stem#'length = 5 + g'2.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \halfNoteDottedDouble +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDoubleDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDoubleDown.ly new file mode 100644 index 00000000000..4a4ac50bbaa --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDoubleDown.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-2020 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: % +% % +% halfNoteDottedDoubleDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted half note with downward stem +%} + +halfNoteDottedDoubleDown = { + \stemDown + \override Stem#'length = 5 + g'2.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \halfNoteDottedDoubleDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDown.ly new file mode 100644 index 00000000000..4b8ec94bb29 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDown.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-2020 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: % +% % +% halfNoteDottedDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted half note with downward stem +%} + +halfNoteDottedDown = { + \stemDown + \override Stem#'length = 5 + g'2. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \halfNoteDottedDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDown.ly new file mode 100644 index 00000000000..09e8e68b76b --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDown.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-2020 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: % +% % +% halfNoteDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +half note with downward stem +%} + +halfNoteDown = { + \stemDown + \override Stem#'length = 5 + g'2 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \halfNoteDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaver.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaver.ly new file mode 100644 index 00000000000..8d5752f1f2c --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaver.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% quaver.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +quaver with upward stem +%} + +quaver = { + \override Stem#'length = 6 + g'8 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \quaver +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDotted.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDotted.ly new file mode 100644 index 00000000000..7c7708cd5b0 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDotted.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% quaverDotted.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted quaver with upward stem +%} + +quaverDotted = { + \override Stem#'length = 6 + g'8. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \quaverDotted +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDouble.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDouble.ly new file mode 100644 index 00000000000..0c9467b5af3 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDouble.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% quaverDottedDouble.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted quaver with upward stem +%} + +quaverDottedDouble = { + \override Stem#'length = 6 + g'8.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \quaverDottedDouble +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDdown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDdown.ly new file mode 100644 index 00000000000..ccfc490ddb2 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDdown.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-2020 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: % +% % +% quaverDottedDoubleDdown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted quaver with downward stem +%} + +quaverDottedDoubleDdown = { + \stemDown + \override Stem#'length = 6 + g'8.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \quaverDottedDoubleDdown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDown.ly new file mode 100644 index 00000000000..16e4e8bfbca --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDown.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-2020 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: % +% % +% quaverDottedDoubleDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted quaver with downward stem +%} + +quaverDottedDoubleDown = { + \stemDown + \override Stem#'length = 6 + g'8.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \quaverDottedDoubleDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDown.ly new file mode 100644 index 00000000000..fa323b3c953 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDown.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-2020 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: % +% % +% quaverDottedDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted quaver with downward stem +%} + +quaverDottedDown = { + \stemDown + \override Stem#'length = 6 + g'8. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \quaverDottedDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDown.ly new file mode 100644 index 00000000000..1302109e4f9 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-quaverDown.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-2020 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: % +% % +% quaverDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +quaver with downward stem +%} + +quaverDown = { + \stemDown + \override Stem#'length = 6 + g'8 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \quaverDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaver.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaver.ly new file mode 100644 index 00000000000..088738f2206 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaver.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% semiquaver.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +semiquaver with upward stem +%} + +semiquaver = { + \override Stem#'length = #6.5 + g'16 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \semiquaver +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDotted.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDotted.ly new file mode 100644 index 00000000000..aed113504ac --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDotted.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% semiquaverDotted.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2013-08-30 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted semiquaver with upward stem +%} + +semiquaverDotted = { + \override Stem#'length = #6.5 + g'16. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \semiquaverDotted +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDouble.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDouble.ly new file mode 100644 index 00000000000..288578ca7f0 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDouble.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% semiquaverDottedDouble.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted semiquaver with upward stem +%} + +semiquaverDottedDouble = { + \override Stem#'length = #6.5 + g'16.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \semiquaverDottedDouble +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDoubleDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDoubleDown.ly new file mode 100644 index 00000000000..ed385bdc50f --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDoubleDown.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-2020 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: % +% % +% semiquaverDottedDoubleDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +doubledotted semiquaver with downward stem +%} + +semiquaverDottedDoubleDown = { + \stemDown + \override Stem#'length = #6.5 + g'16.. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \semiquaverDottedDoubleDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDown.ly new file mode 100644 index 00000000000..da62c6769a6 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDown.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-2020 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: % +% % +% semiquaverDottedDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +dotted semiquaver with downward stem +%} + +semiquaverDottedDown = { + \stemDown + \override Stem#'length = #6.5 + g'16. +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \semiquaverDottedDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDown.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDown.ly new file mode 100644 index 00000000000..bb61aee5174 --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDown.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-2020 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: % +% % +% semiquaverDown.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-13 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +semiquaver with downward stem +%} + +semiquaverDown = { + \stemDown + \override Stem#'length = #6.5 + g'16 +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \semiquaverDown +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly new file mode 100644 index 00000000000..2ec79c79f9e --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly new file mode 100644 index 00000000000..f5bee0c84d4 --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly new file mode 100644 index 00000000000..f60dcd06745 --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly new file mode 100644 index 00000000000..fe3715b1d4d --- /dev/null +++ b/Master/texmf-dist/source/latex/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-2020 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 +} + diff --git a/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-twoBeamedQuavers.ly b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-twoBeamedQuavers.ly new file mode 100644 index 00000000000..15c8c71306f --- /dev/null +++ b/Master/texmf-dist/source/latex/lilyglyphs/glyphimages/generated_src/lily-twoBeamedQuavers.ly @@ -0,0 +1,70 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% This file is part of the 'lilyglyphs' LaTeX package. % +% ========== % +% % +% https://github.com/openlilylib/lilyglyphs % +% http://www.openlilylib.org/lilyglyphs % +% % +% Copyright 2012-2020 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: % +% % +% twoBeamedQuavers.ly % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% created by buildglyphimages.py on 2012-11-09 + +\version "2.16.2" + +#(set-global-staff-size 14) + +\paper { + indent = 0 +} +\header { + tagline = "" +} + +%{ +two beamed quavers with diagonal beam +%} + +twoBeamedQuavers = { + \override Beam#'damping = 0 + d'8[ e'] +} + + \score { + \new Staff \with { + \remove "Staff_symbol_engraver" + \remove "Clef_engraver" + \remove "Time_signature_engraver" + } + \twoBeamedQuavers +} + |