From 9c469697ce4fb3329e456f86b47c1555422fb043 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Thu, 16 Sep 2021 12:23:22 +0530 Subject: [PATCH] Move copyright text into project-common.ly --- 1 The Vagabond/common.ly | 14 -------------- main.ly | 1 + project-common.ly | 15 +++++++++++++++ 3 files changed, 16 insertions(+), 14 deletions(-) create mode 100755 project-common.ly diff --git a/1 The Vagabond/common.ly b/1 The Vagabond/common.ly index 7014ebd..464c1dd 100755 --- a/1 The Vagabond/common.ly +++ b/1 The Vagabond/common.ly @@ -4,17 +4,3 @@ common = { \time 4/4 \key e \minor } - -copyright = \markup -\center-column { - \smaller { - "The author of this arrangement, contrapunctus/Kashish (xmpp:contrapunctus@jabjab.de), would like to release it into the" - \raise #1 - \concat { - \bold "public domain " - "using the Creative Commons CC0 License - " - \with-url #"http://creativecommons.org/publicdomain/zero/1.0/" - {http://creativecommons.org/publicdomain/zero/1.0/} - } - } -} diff --git a/main.ly b/main.ly index 3b6419a..698f999 100755 --- a/main.ly +++ b/main.ly @@ -1,6 +1,7 @@ \version "2.18.2" \include "lsr952.ly" +\include "project-common.ly" \include "1 The Vagabond/common.ly" \include "1 The Vagabond/music/voice.ly" diff --git a/project-common.ly b/project-common.ly new file mode 100755 index 0000000..2140a64 --- /dev/null +++ b/project-common.ly @@ -0,0 +1,15 @@ +\version "2.18.2" + +copyright = \markup +\center-column { + \smaller { + "The author of this arrangement, contrapunctus/Kashish (xmpp:contrapunctus@jabjab.de), would like to release it into the" + \raise #1 + \concat { + \bold "public domain " + "using the Creative Commons CC0 License - " + \with-url #"http://creativecommons.org/publicdomain/zero/1.0/" + {http://creativecommons.org/publicdomain/zero/1.0/} + } + } +}