From 3ac8ccde3f16f3d0dc1e6254ab0252adca73d6fd Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:13:17 +0000 Subject: [PATCH] lilypond-1.0.1 --- init/book-fragment.ly | 2 +- init/book-init.ly | 14 ++++++++++++++ init/center-fragment.ly | 24 ++++++++++++++++++++++++ init/center.ly | 15 +++++++++++++++ init/fragment.ly | 24 ++++++++++++++++++++++++ init/init.fly | 14 ++++++++++++++ init/init.ly | 8 ++++++++ init/paper16.ly | 15 ++++++++------- init/paper20.ly | 12 +++++++++++- 9 files changed, 119 insertions(+), 9 deletions(-) create mode 100644 init/book-init.ly create mode 100644 init/center-fragment.ly create mode 100644 init/center.ly create mode 100644 init/fragment.ly create mode 100644 init/init.fly create mode 100644 init/init.ly diff --git a/init/book-fragment.ly b/init/book-fragment.ly index 4491fdbd1a..08a4a3c97a 100644 --- a/init/book-fragment.ly +++ b/init/book-fragment.ly @@ -1,6 +1,6 @@ % Toplevel initialisation file. -\version "0.1.15"; +\version "1.0.0"; \include "declarations.ly" diff --git a/init/book-init.ly b/init/book-init.ly new file mode 100644 index 0000000000..8ad5ef7a65 --- /dev/null +++ b/init/book-init.ly @@ -0,0 +1,14 @@ +% Toplevel initialisation file. + +\version "1.0.0"; + + +\include "declarations.ly"; +\include "paper16.ly" + +default_paper = \paper{ + \paper_sixteen +} + + +\maininput diff --git a/init/center-fragment.ly b/init/center-fragment.ly new file mode 100644 index 0000000000..1b4c419c10 --- /dev/null +++ b/init/center-fragment.ly @@ -0,0 +1,24 @@ +% Toplevel initialisation file. + +\version "1.0.0"; + + +\include "declarations.ly" + +\include "paper16.ly"; + +default_paper = \paper { + \paper_sixteen + linewidth = 7.\cm; +} + +\score { +% \melodic\relative c { + \melodic { + \maininput + } + \paper { + linewidth = -1.0\cm; + castingalgorithm = \Wordwrap; + } +} diff --git a/init/center.ly b/init/center.ly new file mode 100644 index 0000000000..89b32b236c --- /dev/null +++ b/init/center.ly @@ -0,0 +1,15 @@ +% Toplevel initialisation file. + +\version "1.0.0"; + + +\include "declarations.ly" +\include "paper16.ly" + +default_paper = \paper { + \paper_sixteen; +% linewidth = 7.\cm; + linewidth = 11.\cm; +} + +\maininput diff --git a/init/fragment.ly b/init/fragment.ly new file mode 100644 index 0000000000..1b4c419c10 --- /dev/null +++ b/init/fragment.ly @@ -0,0 +1,24 @@ +% Toplevel initialisation file. + +\version "1.0.0"; + + +\include "declarations.ly" + +\include "paper16.ly"; + +default_paper = \paper { + \paper_sixteen + linewidth = 7.\cm; +} + +\score { +% \melodic\relative c { + \melodic { + \maininput + } + \paper { + linewidth = -1.0\cm; + castingalgorithm = \Wordwrap; + } +} diff --git a/init/init.fly b/init/init.fly new file mode 100644 index 0000000000..3d94ef25ed --- /dev/null +++ b/init/init.fly @@ -0,0 +1,14 @@ +% Toplevel initialisation file. + +\version "1.0.0"; + + +\include "declarations.ly" + +\score { + \melodic\relative c { + \maininput + } + \paper { } + \midi{ } +} diff --git a/init/init.ly b/init/init.ly new file mode 100644 index 0000000000..91fa45796d --- /dev/null +++ b/init/init.ly @@ -0,0 +1,8 @@ +% Toplevel initialisation file. + +\version "1.0.0"; + + +\include "declarations.ly"; + +\maininput diff --git a/init/paper16.ly b/init/paper16.ly index b9b777403d..336a7fe737 100644 --- a/init/paper16.ly +++ b/init/paper16.ly @@ -1,15 +1,12 @@ % paper16.ly +\include "table13.ly"; +\include "table11.ly"; \include "table16.ly"; -%{ -TODO make this somehow parametric. for example the linewidth was -chosen to look good on A4 paper. This probably looks less good on US -paper sizes. - -%} +\version "1.0.0"; paper_sixteen = \paper { staffheight = 16.0\pt; @@ -22,7 +19,11 @@ paper_sixteen = \paper { basicspace = 4.\pt; arithmetic_basicspace = 2.; arithmetic_multiplier = 4.8\pt; + texsetting = "\\input lilyponddefs \\musixsixteendefs "; - \symboltables { \table_sixteen } + 0 = \symboltables { \table_sixteen } + -1 = \symboltables { \table_thirteen } + -2 = \symboltables { \table_eleven } + \include "params.ly"; } diff --git a/init/paper20.ly b/init/paper20.ly index 38247adf4a..1977147a96 100644 --- a/init/paper20.ly +++ b/init/paper20.ly @@ -2,6 +2,11 @@ \include "table20.ly"; + \include "table13.ly"; + \include "table16.ly"; + +\version "1.0.0"; + paper_twenty = \paper { staffheight = 20.0\pt; % where to get papersize (e.g. a5, letter) @@ -14,8 +19,13 @@ paper_twenty = \paper { basicspace = 8.\pt; arithmetic_basicspace = 2.; arithmetic_multiplier = 6.\pt; + texsetting = "\\input lilyponddefs \\musixtwentydefs "; + + + -2 = \symboltables { \table_thirteen } + -1 = \symboltables { \table_sixteen } + 0 = \symboltables { \table_twenty } - \symboltables { \table_twenty } \include "params.ly"; } -- 2.39.5